-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.58 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
{
"name": "consul-kv-monitor",
"version": "2.0.3",
"description": "Service to monitor key-value records in consul",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"lint": "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 3000 -R spec './tests/Functional/**/*.js'",
"coveralls": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --opts tests/mocha.opts -R spec ./tests && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/LCMApps/consul-kv-monitor.git"
},
"license": "MIT",
"engines": {
"node": ">=8.0"
},
"dependencies": {
"deep-freeze": "0.0.1",
"lodash": "^4.17.11"
},
"devDependencies": {
"app-module-path": "^2.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"consul": "0.36.0",
"coveralls": "^3.0.2",
"data-driven": "^1.3.0",
"eslint": "^6.5.1",
"get-port": "^5.0.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "^6.2.1",
"nock": "^10.0.6",
"proxyquire": "^2.1.0",
"sinon": "^7.2.3"
},
"bugs": {
"url": "https://github.com/LCMApps/consul-kv-monitor/issues"
},
"homepage": "https://github.com/LCMApps/consul-kv-monitor"
}