-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.88 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "fuge-runner",
"description": "",
"keywords": [
"fuge",
"microservices",
"process",
"runner",
"watcher",
"docker",
"kubernetes"
],
"version": "2.0.1",
"license": "MIT",
"author": "Peter Elger (http://nearform.com/)",
"contributors": [
"Peter Elger <elger.peter@gmail.com> (http://peterelger.com/)",
"Matthew O'Connor (https://github.com/matthewoconnor-development)",
"Matteo Collina (https://github.com/mcollina)",
"Dean McDonnell (https://github.com/mcdonelldean)",
"Mihai Dima (https://github.com/mihaidma)"
],
"main": "./runner.js",
"engines": {
"node": "*"
},
"dependencies": {
"async": "^0.9.0",
"chalk": "^1.1.1",
"chokidar": "^1.2.0",
"chokidar-child": "^0.1.1",
"dockerode": "^2.3.1",
"dotenv": "^2.0.0",
"is-git-url": "^0.2.3",
"lodash": "^3.10.1",
"parse-github-url": "^0.3.1",
"parse-url": "^1.3.5",
"ps-tree": "^1.0.1",
"pump": "^1.0.1",
"simple-grep": "0.0.1",
"split2": "^2.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/apparatus/fuge-runner"
},
"scripts": {
"lint": "echo 'linting...' && spacey-standard | snazzy",
"test": "tap 'test/**/*.test.js' --branches=75 --statements=90 --functions=90 --lines=90",
"commit-check": "npm run test && npm run lint",
"coverage": "npm run test -- --cov --coverage-report=html",
"coveralls": "npm run test -- --cov --coverage-report=text-lcov | coveralls"
},
"nyc": {
"exclude": [
"**/test/**/*.js"
]
},
"pre-commit": [
"commit-check"
],
"devDependencies": {
"coveralls": "^2.11.14",
"fuge-config": "^2.0.1",
"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": "^4.0.0",
"tap": "^7.1.2",
"tap-spec": "^4.1.1"
}
}