-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
41 lines (41 loc) · 1.06 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
35
36
37
38
39
40
41
{
"name": "chaos-lambda",
"version": "2.0.2",
"description": "Chaos Lambda is a small tool for testing resiliency and recoverability of AWS-based architectures. It's a serverless implementation of Netflix Chaos Monkey.",
"main": "./bin/chaos-lambda",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shoreditch-ops/chaos-lambda.git"
},
"keywords": [
"aws",
"chaos",
"reliability",
"chaos",
"monkey"
],
"author": "Hassy Veldstra <[email protected]>",
"license": "MPL-2.0",
"preferGlobal": true,
"bin": {
"chaos-lambda": "./bin/chaos-lambda"
},
"bugs": {
"url": "https://github.com/shoreditch-ops/chaos-lambda/issues"
},
"homepage": "https://github.com/shoreditch-ops/chaos-lambda#readme",
"dependencies": {
"archiver": "^1.0.0",
"async": "1.5.2",
"aws-sdk": "2.2.40",
"chalk": "1.1.1",
"debug": "2.2.0",
"lodash": "4.6.1",
"request-promise": "^3.0.0",
"tmp": "0.0.28",
"yargs": "4.2.0"
}
}