-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 KB
/
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
{
"name": "instance_terminator",
"version": "0.0.36",
"engines": {
"node": "^12"
},
"description": "Terminate ec2 instances within autoscaling groups",
"homepage": "https://github.com/daveshepherd/instance-terminator",
"repository": {
"type": "git",
"url": "https://github.com/daveshepherd/instance-terminator.git"
},
"scripts": {
"test:unit": "mocha --reporter spec --bail --check-leaks test/unit/* test/unit/**/*",
"test:component": "mocha --reporter spec --bail --check-leaks test/component/* test/component/**/*",
"lint": "eslint **/*.js",
"package": "bestzip instance-terminator.zip src/",
"release": "gh-release --dry-run -b 'release new version'"
},
"author": "Wealth Wizards",
"license": "MIT",
"devDependencies": {
"aws-sdk-mock": "4.5.0",
"bestzip": "2.1.7",
"chai": "4.3.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "13.2.0",
"eslint-plugin-import": "2.22.1",
"lambda-tester": "4.0.1",
"mocha": "10.0.0",
"proxyquire": "2.1.3",
"sinon": "7.5.0"
}
}