forked from pghalliday/alarmist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.89 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "alarmist",
"version": "1.0.27",
"description": "Monitor parallel jobs",
"main": "lib/index.js",
"bin": {
"alarmist-job": "bin/job.js",
"alarmist-monitor": "bin/monitor.js"
},
"scripts": {
"cmd:lint": "eslint .",
"cmd:test": "cross-env NODE_ENV=test nyc mocha",
"cmd:coverage": "nyc report -r text && nyc check-coverage",
"cmd:build": "rimraf lib && babel src --out-dir lib",
"cmd:coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "run-s cmd:lint cmd:test cmd:coverage",
"build": "run-s test cmd:build",
"ci": "run-s build cmd:coveralls",
"alarmist:lint": "node ./bin/job.js lint run-s -s cmd:lint",
"alarmist:test": "node ./bin/job.js test run-s -s cmd:test",
"alarmist:coverage": "node ./bin/job.js coverage run-s -s cmd:coverage",
"alarmist:build": "node ./bin/job.js build run-s -s cmd:build",
"alarmist:metric": "node ./bin/job.js --metric metric node test-metric.js",
"watch:lint": "chokidar \"+(src|test)/**/*\" -c \"run-s -s alarmist:lint\"",
"watch:test": "chokidar \"+(src|test)/**/*\" -c \"run-s -s alarmist:test\"",
"watch:coverage": "chokidar \"coverage/lcov.info\" -c \"run-s -s alarmist:coverage\"",
"watch:build": "chokidar \"src/**/*\" -c \"run-s -s alarmist:build\"",
"watch": "chokidar \"+(src|test)/**/*\" -c \"run-s -s build\"",
"start": "node ./bin/monitor.js --debug --no-reset run-p watch:lint watch:test watch:coverage watch:build alarmist:metric",
"prepublishOnly": "run-s cmd:build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pghalliday/alarmist.git"
},
"keywords": [
"parallel",
"build",
"terminal",
"watch"
],
"author": "Peter Halliday <[email protected]> (http://pghalliday.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/pghalliday/alarmist/issues"
},
"homepage": "https://github.com/pghalliday/alarmist#readme",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"babel-plugin-istanbul": "^3.1.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chokidar": "^1.6.1",
"chokidar-cli": "^1.2.0",
"coveralls": "^3.0.2",
"cross-env": "^3.1.4",
"eslint": "^5.10.0",
"eslint-config-google": "^0.11.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.0.1",
"nyc": "^13.1.0",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0"
},
"dependencies": {
"asciichart": "^1.5.7",
"babel-polyfill": "^6.22.0",
"blessed": "^0.1.81",
"cliclopts": "^1.1.1",
"clipboardy": "^1.2.3",
"cross-spawn": "^5.1.0",
"lockfile": "^1.0.3",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"redux": "^3.6.0",
"redux-actions": "^1.2.1",
"rimraf": "^2.5.4",
"sanitize-filename": "^1.6.1",
"tree-kill": "^1.1.0",
"uuid": "^3.0.1"
}
}