-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1003 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "aws-amicleaner",
"version": "1.0.6",
"description": "To clean up your AWS AMIs: First, include AMIs by name or tag. Second, exclude AMIs in use, younger than N days, or the newest N images. Third, manually confirm the list of AMIs for deletion.",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test": "eslint . && c8 mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/widdix/aws-amicleaner.git"
},
"author": "Michael Wittig <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/widdix/aws-amicleaner/issues"
},
"homepage": "https://github.com/widdix/aws-amicleaner#readme",
"dependencies": {
"argparse": "2.0.1",
"aws-sdk": "2.1552.0",
"p-limit": "3.1.0",
"wildcard": "2.0.1"
},
"devDependencies": {
"c8": "9.1.0",
"eslint": "8.56.0",
"mocha": "10.2.0"
},
"mocha": {
"timeout": 10000
},
"c8": {
"reporter": [
"text",
"html"
]
}
}