This repository has been archived by the owner on Mar 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 147
/
package.json
61 lines (61 loc) · 1.69 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.5.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/**/*.spec.js\"",
"test-app": "node bin/nodejs-dashboard.js -- node test/app/index.js",
"coverage": "nyc mocha -- -c --recursive --require test/setup.js \"test/**/*.spec.js\""
},
"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": ">=8.0.0"
},
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.18",
"blocked": "^1.2.1",
"commander": "^4.0.1",
"cross-spawn": "^7.0.1",
"jsonschema": "^1.1.1",
"lodash": "^4.16.2",
"pidusage": "^2.0.17",
"pretty-bytes": "^5.3.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"eslint": "^6.5.1",
"eslint-config-formidable": "^4.0.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-promise": "^4.2.1",
"mocha": "^6.2.2",
"mock-require": "^3.0.3",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0"
}
}