-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.25 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-service-health-monitor",
"version": "2.1.0",
"description": "Service to monitor health status of services in consul.",
"main": "index.js",
"engines": {
"node": ">=8.0"
},
"directories": {
"test": "tests"
},
"scripts": {
"lint": "./node_modules/.bin/eslint ./",
"tests": "yarn run unit-tests && yarn run func-tests",
"test:coverage": "NODE_ENV=test istanbul cover _mocha --print both -- --opts tests/mocha.opts -R spec ./tests",
"unit-tests": "NODE_ENV=test mocha --opts tests/mocha.opts -R spec './tests/Unit/**/*.js'",
"func-tests": "NODE_ENV=test mocha --opts tests/mocha.opts --timeout 30000 -R spec './tests/Functional/**/*.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/LCMApps/consul-service-health-monitor.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"app-module-path": "^2.2.0",
"chai": "4.3.7",
"chai-as-promised": "^7.1.1",
"consul": "1.2.0",
"data-driven": "^1.3.0",
"deep-freeze": "0.0.1",
"eslint": "^4.4.1",
"get-port": "^3.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"nock": "13.2.9",
"proxyquire": "^1.8.0",
"sinon": "^2.4.1"
},
"dependencies": {
"lodash": "^4.17.4"
}
}