-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.04 KB
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
{
"name": "shoal",
"description": "A simple process manager for the 21st century",
"keywords": [
"shoal",
"process",
"workers",
"upstart"
],
"version": "0.2.3",
"repository": {
"type": "git",
"url": "git://github.com/dominiek/shoal.git"
},
"author": "Dominiek ter Heide <dominiek@bottlenose.com>",
"license": "MIT",
"main": "index",
"bin": {
"shoald": "./bin/shoald",
"shoal": "./bin/shoal"
},
"scripts": {
"test": "NODE_ENV=test mocha --reporter dot test/*"
},
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"express": "4.7.2",
"ejs": "1.0.0",
"connect": "3.1.0",
"body-parser": "1.5.2",
"async": "0.9.0",
"request": "~2.39",
"commander": "2.3.0",
"http-auth": "2.1.9",
"colors": "*"
},
"devDependencies": {
"mocha": "*",
"chai": "*"
},
"bugs": {
"url": "https://github.com/dominiek/shoal/issues"
},
"homepage": "https://github.com/dominiek/shoal",
"directories": {
"example": "examples",
"test": "test"
}
}