-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
47 lines (47 loc) · 1.24 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
44
45
46
47
{
"name": "consul",
"version": "2.0.1",
"description": "Consul client",
"main": "./lib",
"types": "./lib/index.d.ts",
"files": [
"./lib"
],
"dependencies": {
"papi": "^1.1.0"
},
"devDependencies": {
"@types/node": "^22.7.6",
"async": "^3.2.0",
"debug": "^4.3.1",
"jshint": "^2.5.5",
"mocha": "^10.7.3",
"nock": "^13.0.7",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"should": "^13.2.1",
"sinon": "^19.0.2",
"temp": "^0.9.4",
"tsd": "^0.31.2",
"uuid": "^10.0.0"
},
"scripts": {
"format": "prettier -w .",
"test": "jshint lib test && prettier -c . && nyc mocha -- --recursive --check-leaks && nyc check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"types": "tsd",
"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 <[email protected]>",
"license": "MIT"
}