-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "measured-node-metrics",
"description": "Various metrics generators and http framework middlewares that can be used with a self reporting metrics registry to easily instrument metrics for a node app.",
"version": "2.0.0",
"homepage": "https://yaorg.github.io/node-measured/",
"engines": {
"node": ">= 5.12"
},
"publishConfig": {
"access": "public"
},
"main": "./lib/index.js",
"scripts": {
"clean": "rm -fr build",
"format": "prettier --write './lib/**/*.{ts,js}'",
"lint": "eslint lib --ext .js",
"test:node": "mocha './test/**/test-*.js'",
"test:node:coverage": "nyc --report-dir build/coverage/ --reporter=html --reporter=text mocha './test/**/test-*.js'",
"test:browser": "exit 0",
"test": "yarn test:node:coverage",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"url": "git://github.com/yaorg/node-measured.git"
},
"dependencies": {
"measured-core": "^2.0.0"
},
"files": [
"lib",
"README.md"
],
"license": "MIT",
"devDependencies": {
"express": "^4.16.3",
"find-free-port": "^1.2.0",
"jsdoc": "^3.5.5",
"measured-reporting": "^2.0.0"
}
}