-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.49 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
{
"name": "mongo-monitor",
"version": "1.1.1",
"description": "MongoDB Cluster Monitor",
"main": "monitor.js",
"engines": {
"node": ">= 8.5.0"
},
"bin": {
"mongo-monitor": "./bin/mongo-monitor.js"
},
"scripts": {
"start": "node ./bin/mongo-monitor.js",
"debug": "node --inspect-brk ./bin/mongo-monitor.js",
"lint": "eslint --ignore-path .gitignore .",
"test": "mocha 'src/**/*.spec.js'",
"test:debug": "mocha --inspect-brk --watch 'src/**/*.spec.js'",
"test:coverage": "nyc --reporter=html --report-dir=./artifacts/coverage _mocha 'src/**/*.spec.js'",
"test:ci": "nyc --reporter=lcov --reporter=html --report-dir=./artifacts/coverage _mocha --reporter mocha-junit-reporter --reporter-options mochaFile=./artifacts/tests/test-report.xml 'src/**/*.spec.js'",
"test:watch": "mocha --watch 'src/**/*.spec.js'",
"release": "npm run lint && npm test && standard-version",
"preversion": "echo 'Version with \"npm run release\"' && exit 1"
},
"author": "Dave Kerr <github.com/dwmkerr>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/dwmkerr/mongo-monitor.git"
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "^3.0.0",
"mongo-connection-string": "^0.1.4",
"mongodb": "^3.3.3"
},
"devDependencies": {
"eslint": "^6.6.0",
"mocha": "^7.0.1",
"mocha-junit-reporter": "^1.17.0",
"nock": "^11.1.0",
"nyc": "^14.1.1",
"sinon": "^8.0.0",
"standard-version": "^8.0.0"
}
}