-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
42
43
44
45
46
47
48
49
50
{
"name": "kosmo",
"version": "0.0.7",
"description": "Deployment tool aws infrastructure",
"main": "lib",
"scripts": {
"prepublish": "npm run lint && npm test",
"test": "mocha './tests/**/*-tests.js' --opts './.mocha.opts'",
"lint": "eslint .",
"coverage": "istanbul cover -x '**lib/kosmoform/lib/resources/lambda.js' --print detail _mocha -- 'tests/**/*-tests.js' --opts './.mocha.opts'"
},
"keywords": [
"aws",
"cloudformation",
"infrastructure",
"deployment"
],
"engines": {
"node": ">=4.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aliak00/kosmo.git"
},
"license": "Apache-2.0",
"dependencies": {
"archiver": "^1.1.0",
"aws-sdk": "^2.2.32",
"change-case": "^3.0.0",
"js-yaml": "^3.5.3",
"lodash": "^4.3.0",
"mime-multipart": "git+https://github.com/sergi/mime-multipart.git",
"minimatch": "^3.0.3",
"moment": "^2.11.1",
"node-getopt": "^0.2.3",
"q": "^1.1.2",
"semver": "^5.1.0"
},
"bin": {
"kosmo": "bin/kosmo"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.7.1",
"istanbul": "^0.4.2",
"mocha": "^3.1.0",
"sinon": "^1.17.3"
}
}