forked from silas/node-consul
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "consul",
"version": "0.40.0",
"description": "Consul client",
"main": "./lib",
"dependencies": {
"papi": "^1.0.0"
},
"devDependencies": {
"async": "^3.2.0",
"debug": "^4.3.1",
"jshint": "^2.5.5",
"mocha": "^8.3.0",
"nock": "^13.0.7",
"node-uuid": "^1.4.3",
"nyc": "^15.1.0",
"should": "^13.2.1",
"sinon": "^9.2.4",
"temp": "^0.9.4"
},
"scripts": {
"test": "jshint lib test && nyc mocha -- --recursive --check-leaks && nyc check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"acceptance": "ACCEPTANCE=true nyc mocha -- test/acceptance --recursive --check-leaks --timeout 30000",
"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 <silas@sewell.org>",
"license": "MIT"
}