-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"name": "dashrun",
"version": "0.2.6",
"description": "Run a node.js script and watch its memory usage on a terminal dashboard",
"main": "index.js",
"bin": "bin/cli.js",
"scripts": {
"hooks": "git config core.hooksPath .tools/git-hooks && chmod +x .tools/git-hooks/*",
"start": "node index.js",
"test": "mocha --recursive --exit --timeout 1000 test/**/*.test.js",
"coverage": "nyc ---temp-dir .coverage/.nyc_output --report-dir .coverage --reporter=lcov --reporter=html npm test",
"lint": "eslint index.js test/",
"validate": "npm test && npm run lint",
"release": "bash .tools/release.sh main"
},
"engines": {
"node": ">= 10"
},
"keywords": [
"memory",
"heap",
"rss",
"dashboard",
"terminal",
"blessed"
],
"author": "Benoît Guérout",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/bguerout/dashrun.git"
},
"bugs": {
"url": "https://github.com/bguerout/dashrun/issues"
},
"homepage": "https://github.com/bguerout/dashrun#readme",
"dependencies": {
"blessed": "0.1.81",
"blessed-contrib": "4.11.0",
"commander": "9.2.0"
},
"devDependencies": {
"eslint": "7.21.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-mocha": "8.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.3.1",
"mocha": "9.2.2",
"nyc": "15.1.0",
"prettier": "2.6.2",
"wait-until": "0.0.2"
},
"prettier": {
"printWidth": 120
}
}