-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "dashflow",
"version": "1.4.0",
"description": "A modern makefile alternative with local dev workflow support and beautiful dashboard",
"main": "index.js",
"repository": "https://github.com/freewheel/dashflow",
"author": "FreeWheel, A Comcast Company",
"license": "Apache-2.0",
"private": false,
"bin": {
"dashflow": "./bin/dashflow"
},
"files": [
"index.js",
"lib",
"web",
"bin",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "eslint lib test web/**/*.js --ignore-pattern web/lib/**/*.js && echo 'lint passed\n'",
"start": "bin/dashflow",
"format": "prettier --write \"lib/**/*.js\" && prettier --write \"web/**/*.js\" --ignore-pattern \"web/lib/**/*.js\"",
"test": "mocha"
},
"devDependencies": {
"eslint": "^5.15.1",
"mocha": "^6.0.2",
"prettier": "^1.16.4"
},
"dependencies": {
"ansi-escapes": "^4.2.0",
"boxen": "^4.1.0",
"chalk": "^2.4.2",
"chokidar": "^3.0.2",
"columnify": "^1.5.4",
"commander": "^3.0.0",
"js-yaml": "^3.13.1",
"node-pty": "https://github.com/microsoft/node-pty.git#04445ed76f90b4f56a190982ea2d4fcdd22a0ee7",
"portfinder": "^1.0.23",
"serve-handler": "^6.1.1",
"socket.io": "^2.2.0",
"vorpal": "^1.12.0"
},
"prettier": {
"trailingComma": "es5"
}
}