-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1017 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
43
44
45
46
47
48
49
50
{
"name": "fireup",
"version": "2.0.0",
"description": "Simple process launcher for local development",
"main": "fireup.js",
"bin": "./fireup.js",
"files": [
"banner.png",
"banner.txt",
"fireup.js",
"lib/"
],
"dependencies": {
"chalk": "^1.1.3",
"debug": "^2.2.0",
"js-yaml": "^3.5.5",
"lodash": "^4.7.0",
"verror": "^1.6.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"requestretry": "^1.6.0",
"sinon": "^1.17.3"
},
"scripts": {
"test": "./node_modules/.bin/mocha test/unit test/integration"
},
"preferGlobal": true,
"engine": {
"node": ">=0.12"
},
"repository": {
"type": "git",
"url": "https://github.com/dotchev/fireup.git"
},
"keywords": [
"foreman",
"process",
"launcher",
"procfile",
"env"
],
"author": "Peter Dotchev",
"license": "MIT",
"bugs": {
"url": "https://github.com/dotchev/fireup/issues"
},
"homepage": "https://github.com/dotchev/fireup"
}