forked from silas/node-consul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "consul",
"version": "0.30.0",
"description": "Consul client",
"main": "./lib",
"dependencies": {
"papi": "^0.27.0"
},
"devDependencies": {
"async": "^1.4.0",
"bluebird": "^3.1.1",
"debug": "^2.1.3",
"istanbul": "^0.3.8",
"jscs": "^2.1.1",
"jshint": "^2.5.5",
"lodash": "^3.5.0",
"mocha": "^2.2.1",
"nock": "^2.9.1",
"node-uuid": "^1.4.3",
"should": "^7.0.2",
"sinon": "^1.14.1",
"temp": "^0.8.1"
},
"scripts": {
"cover": "istanbul cover _mocha -- --recursive && open coverage/lcov-report/index.html",
"test": "jshint lib test && jscs lib test && istanbul cover --report text _mocha -- --recursive --check-leaks && istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"acceptance": "ACCEPTANCE=true istanbul cover --report text _mocha -- test/acceptance --recursive --check-leaks --timeout 15000",
"acceptanceSetupMacOS": "sudo ifconfig lo0 alias 127.0.0.2 up && sudo ifconfig lo0 alias 127.0.0.3 up"
},
"keywords": [
"consul"
],
"repository": {
"type": "git",
"url": "https://github.com/silas/node-consul.git"
},
"bugs": {
"url": "https://github.com/silas/node-consul/issues"
},
"author": "Silas Sewell <[email protected]>",
"license": "MIT"
}