forked from idanto/express-node-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "express-node-metrics",
"version": "1.2.0",
"description": "metrics for node+express application",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/idanto/express-node-metrics.git"
},
"scripts": {
"test": "./node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --reporter mochawesome",
"test-travis": "./node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"doctoc": "npm install -g doctoc && doctoc README.md"
},
"bugs": {
"url": "https://github.com/idanto/node-metrics/issues"
},
"homepage": "https://github.com/idanto/node-metrics",
"keywords": [
"metrics",
"node",
"express"
],
"author": "Idan Tovi",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"mochawesome": "^1.5.2",
"node-mocks-http": "^1.5.3",
"rewire": "^2.5.2",
"sinon": "^1.17.5",
"sleep": "^4.0.0"
},
"dependencies": {
"coveralls": "^2.11.13",
"event-loop-stats": "^1.0.0",
"gc-stats": "^1.0.0",
"measured": "^1.1.0",
"memwatch-next": "^0.3.0",
"node-schedule": "^1.1.1",
"pidusage": "^1.0.7"
}
}