-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "appmetrics",
"version": "5.1.1",
"engines": {
"node": ">=6"
},
"description": "Node Application Metrics",
"dependencies": {
"nan": "2.x",
"node-gyp": "5.x",
"tar": "4.x",
"semver": "^5.3.0",
"jszip": "2.5.x",
"ibmapm-embed": ">=19.9.0"
},
"devDependencies": {
"codecov": "^3.1.0",
"eslint": "^4.0.0",
"eslint-config-strongloop": "^2.1.0",
"prettier": "^1.4.4",
"tap": "^12.0.1"
},
"scripts": {
"fix-prettier": "prettier --single-quote --trailing-comma es5 --print-width 120 --write {bin,lib,probes,tests}/**/*.js *.js",
"fix-eslint": "eslint --fix {bin,lib,probes,tests}/**/*.js *.js",
"pretest": "eslint .",
"test": "tap --reporter tap --timeout=120 tests/*tests.js tests/probes/http*test.js tests/headless_test.js",
"travis": "npm test",
"install": "node showBuildInfo.js && node-gyp rebuild"
},
"directories": {
"lib": "lib",
"probes": "probes"
},
"repository": {
"type": "git",
"url": "git://github.com/RuntimeTools/appmetrics.git"
},
"author": "",
"license": "Apache-2.0"
}