-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.79 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.79 KB
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
51
52
{
"name": "database-agent",
"version": "1.1.2",
"description": "Sample implementation of the mongodb agent for DBoM",
"private": true,
"scripts": {
"start": "node bin/www",
"test": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --require ./test-helpers/prepare.js --colors --timeout=1200000 --exit && npx nyc report --reporter=html",
"test-coveralls": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --require ./test-helpers/prepare.js --timeout=1200000 --exit && npx nyc report --reporter=lcovonly",
"test-jenkins": "./node_modules/.bin/cross-env JUNIT_REPORT_PATH=./report.xml ./node_modules/.bin/nyc ./node_modules/.bin/mocha --require ./test-helpers/prepare.js --reporter mocha-jenkins-reporter --timeout=1200000 --exit && npx nyc report --reporter=html",
"generate-docs": "./node_modules/.bin/jsdoc -c ./docs/jsdoc.json"
},
"dependencies": {
"cookie-parser": "~1.4.6",
"debug": "~4.3.4",
"express": "~4.18.2",
"express-winston": "^4.2.0",
"jaeger-client": "^3.19.0",
"mongodb": "^3.7.3",
"morgan": "~1.10.0",
"node-cache": "^5.1.2",
"opentracing": "^0.14.7",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"decache": "^4.6.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.26.0",
"jsdoc": "^3.6.10",
"minami": "^1.2.3",
"mocha": "^9.2.2",
"mocha-jenkins-reporter": "^0.4.8",
"mocha-prepare": "^0.1.0",
"mocha-prepare-promise": "0.0.2",
"mongo-unit": "^3.2.0",
"mongodb-memory-server": "^6.9.6",
"mongoose": "^5.13.15",
"nyc": "^15.1.0",
"sinon": "^15.1.2",
"sinon-chai": "^3.7.0"
},
"nyc": {
"all": true,
"exclude": [
"controller/tracer.js"
]
}
}