forked from apparatus/fuge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.56 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
59
60
{
"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",
"express": "^4.16.4",
"fuge-config": "^2.0.2",
"fuge-dns": "^2.0.0",
"fuge-runner": "^2.0.1",
"lodash": "^4.5.0",
"tpmorp": "^1.0.5",
"wreck": "^14.1.4"
},
"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",
"pre-commit": "^1.1.3",
"proxyquire": "^1.7.11",
"request": "^2.69.0",
"snazzy": "^5.0.0",
"spacey-standard": "^3.0.0"
}
}