-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
48
49
50
{
"name": "consul-service-wrapper",
"version": "2.2.2",
"description": "Easily create a service and register it with Consul in node.",
"main": "index.js",
"scripts": {
"test": "mocha test/specs",
"coverage": "nyc npm test && nyc report --reporter=lcov",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"cov": "open ./coverage/lcov-report/index.html"
},
"engines": {
"node": ">=6.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samstefan/consul-service-wrapper.git"
},
"author": "Sam Stefan",
"license": "MIT",
"bugs": {
"url": "https://github.com/samstefan/consul-service-wrapper/issues"
},
"nyc": {
"watermarks": {
"lines": [80, 95],
"functions": [80, 95],
"branches": [80, 95],
"statements": [80, 95]
}
},
"homepage": "https://github.com/samstefan/consul-service-wrapper#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"should": "^11.2.1",
"sinon": "^2.1.0"
},
"dependencies": {
"@types/consul": "^0.23.31",
"consul": "^0.28.0"
},
"typings": "consul-service-wrapper.d.ts"
}