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.39.0",
"description": "Consul client",
"main": "./lib",
"dependencies": {
"papi": "^0.29.0"
},
"devDependencies": {
"async": "^2.6.1",
"bluebird": "^3.1.1",
"debug": "^3.1.0",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jshint": "^2.5.5",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"nock": "^9.3.2",
"node-uuid": "^1.4.3",
"should": "^13.2.1",
"sinon": "^6.1.3",
"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"
}