-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (44 loc) · 1.16 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
{
"name": "daemonsauce",
"version": "1.0.0-alpha",
"description": "Just add Daemon Sauce to turn your app into a daemon.",
"keywords": [
"daemon", "init", "upstart", "setuid", "setgid", "lock", "log"
],
"homepage": "https://github.com/Medium/daemonsauce",
"repository": {
"type": "git",
"url": "https://github.com/Medium/daemonsauce.git"
},
"licenses": [ {
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
} ],
"author": {
"name": "Dan Bornstein",
"email": "[email protected]",
"url": "http://www.milk.com/"
},
"maintainers": [ {
"name": "Dan Bornstein",
"email": "[email protected]",
"web": "http://www.milk.com/"
} ],
"main": "lib/index.js",
"engine": {
"node": ">=0.6.0"
},
"scripts": {
"install": "node-gyp configure build",
"test": "node_modules/.bin/nodeunit test"
},
"dependencies": {
"nan": "^1.8.4",
"posix": "~2.0.1"
},
"devDependencies": {
"nodeunit": "0.9.1",
"nodeunitq": "0.1.1",
"q": "1.4.1"
}
}