forked from FormidableLabs/nodejs-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "nodejs-dashboard",
"version": "0.4.1",
"description": "Telemetry dashboard for node.js apps from the terminal!",
"keywords": [
"dashboard",
"telemetry",
"terminal",
"realtime",
"statistics"
],
"bin": "bin/nodejs-dashboard.js",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run test-only",
"test-only": "mocha -c --require test/setup.js --recursive ./test",
"test-app": "node bin/nodejs-dashboard.js -- node test/app/index.js",
"coverage": "istanbul cover --include-all-sources node_modules/mocha/bin/_mocha -- -c --recursive --require test/setup.js ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FormidableLabs/nodejs-dashboard.git"
},
"author": "Jason Wilson",
"license": "MIT",
"bugs": {
"url": "https://github.com/FormidableLabs/nodejs-dashboard/issues"
},
"homepage": "https://github.com/FormidableLabs/nodejs-dashboard#readme",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^3.5.5",
"blocked": "^1.2.1",
"commander": "^2.9.0",
"cross-spawn": "^4.0.2",
"jsonschema": "^1.1.1",
"lodash": "^4.16.2",
"pidusage": "^1.0.8",
"pretty-bytes": "^3.0.1",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"chai": "^3.5.0",
"eslint": "^2.10.2",
"eslint-config-formidable": "^2.0.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^1.16.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.1",
"mock-require": "^2.0.1",
"object.assign": "^4.0.4",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
}
}