-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 946 Bytes
/
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
{
"name": "spinup",
"version": "1.3.2",
"description": "Dead simple task runner for launching long-running processes during development",
"main": "index.js",
"directories": {
"test": "test"
},
"keywords": [
"process",
"manager",
"spawn",
"task",
"runner",
"launcher",
"development",
"tool"
],
"bin": {
"spinup": "./bin/spinup"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jaz303/spinup.git"
},
"author": "Jason Frame <[email protected]> (http://jasonframe.co.uk)",
"license": "ISC",
"bugs": {
"url": "https://github.com/jaz303/spinup/issues"
},
"homepage": "https://github.com/jaz303/spinup",
"dependencies": {
"colorize-stream": "^0.1.0",
"dotenv": "^0.4.0",
"list-cycler": "0.0.2",
"shell-quote": "^1.4.2",
"through": "^2.3.4"
}
}