-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 KB
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
51
52
53
54
55
56
57
58
{
"name": "kartographer",
"version": "0.1.0",
"description": "Kartographer creates and maintains configurations for Kubernetes",
"main": "index.js",
"directories": {
"test": "test"
},
"standard": {
"ignore": [
"/test/"
]
},
"scripts": {
"start": "NODE_PATH=./lib node index.js",
"test": "npm run wait-for-rabbit && NODE_PATH=./lib NODE_ENV=test lab -v -c -t 99.73 ./test",
"wait-for-rabbit": "NODE_PATH=./lib node ./scripts/wait-for-rabbit.js",
"lint": "node_modules/.bin/standard"
},
"repository": {
"type": "git",
"url": "git://github.com/codenow/kartographer"
},
"author": "anandkumarpatel",
"license": "MIT",
"bugs": {
"url": "https://github.com/codenow/kartographer/issues"
},
"engines": {
"node": ">=4.2.2 <5",
"npm": ">=2.14.7"
},
"homepage": "https://github.com/codenow/kartographer",
"dependencies": {
"101": "^1.5.0",
"@runnable/api-client": "^9.2.7",
"bluebird": "^3.4.7",
"bunyan": "^1.5.1",
"continuation-local-storage": "^3.2.0",
"error-cat": "^3.0.0",
"joi": "^9.0.4",
"js-yaml": "^3.8.1",
"keypather": "^2.0.1",
"loadenv": "^2.1.0",
"monitor-dog": "^1.5.0",
"omit-deep": "^0.3.0",
"ponos": "^5.3.1",
"standard": "^5.3.1",
"tmp-promise": "^1.0.3"
},
"devDependencies": {
"code": "^4.0.0",
"deepmerge": "^1.3.2",
"lab": "^12.1.0",
"sinon": "^1.17.3",
"sinon-as-promised": "^4.0.2"
}
}