forked from breser/git2consul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "git2consul",
"description": "System for moving data from git to consul",
"version": "0.8.1",
"contributors": [
{
"name": "Ryan Breen",
"email": "[email protected]"
}
],
"repository" : {
"type": "git",
"url": "git://github.com/Cimpress-MCP/git2consul.git"
},
"dependencies": {
"body-parser": "~1.4.3",
"bunyan": "1.1.3",
"consul": "^0.10.0",
"express": "~4.6.1",
"mkdirp": "0.5.0",
"coveralls": "^2.11.2",
"rimraf": "2.2.8",
"underscore": "1.6.0"
},
"devDependencies": {
"istanbul": "0.2.11",
"mocha": "1.20.1",
"request": "^2.42.0",
"should": "3.3.2",
"xunit-file": "0.0.5"
},
"scripts": {
"test": "./node_modules/.bin/_mocha --reporter spec -t 10000 test | bunyan",
"cov": "`npm bin`/istanbul cover --root . -x node_modules -x test --dir ./reports `npm bin`/_mocha -- --reporter spec -t 10000 test | bunyan",
"coveralls": "npm run cov && node_modules/coveralls/bin/coveralls.js < reports/lcov.info"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
]
}