-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
58 lines (58 loc) · 1.51 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
51
52
53
54
55
56
57
58
{
"name": "fuge",
"description": "microservices manager",
"keywords": [
"fuge",
"microservices",
"kubernetes",
"docker",
"shell"
],
"version": "2.0.2",
"license": "MIT",
"author": "Peter Elger (http://nearform.com/)",
"contributors": [
"Peter Elger <elger.peter@gmail.com> (http://peterelger.com/)",
"David Mark Clements <david.clements@nearform.com> (http://davidmarkclements.com)",
"Matthew O'Connor (https://github.com/matthewoconnor-development)",
"Mihai Dima (https://github.com/mihaidma)",
"Shane Lacey (https://github.com/shanel262)"
],
"main": "./fuge.js",
"engines": {
"node": "*"
},
"dependencies": {
"cli-table": "^0.3.1",
"colors": "^1.1.2",
"commist": "^1.0.0",
"death": "^1.0.0",
"fuge-config": "^2.0.1",
"fuge-dns": "^2.0.0",
"fuge-runner": "^2.0.1",
"tpmorp": "^1.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/apparatus/fuge.git"
},
"bin": {
"fuge": "./fuge.js"
},
"scripts": {
"lint": "echo 'linting...' && spacey-standard | snazzy",
"test": "node test/basic.test.js",
"commit-check": "npm run test && npm run lint",
"coverage": "istanbul cover test/*.test.js && open ./coverage/lcov-report/index.html"
},
"devDependencies": {
"istanbul": "^0.4.5",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.10",
"pre-commit": "^1.1.3",
"proxyquire": "^1.7.11",
"request": "^2.69.0",
"snazzy": "^5.0.0",
"spacey-standard": "^4.0.0"
}
}