forked from lfryc/grunt-external-daemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.29 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
50
51
52
53
54
55
56
57
58
59
{
"name": "grunt-external-daemon",
"description": "Grunt.js task to launch external background processes",
"version": "1.1.0",
"homepage": "https://github.com/jlindsey/grunt-external-daemon",
"author": {
"name": "Josh Lindsey",
"email": "[email protected]"
},
"contributors": [
{
"name": "Chase Douglas",
"email": "[email protected]"
}
],
"license": {
"type": "MIT",
"url": "https://github.com/jlindsey/grunt-external-daemon/blob/master/LICENSE"
},
"repository": {
"type": "git",
"url": "[email protected]:jlindsey/grunt-external-daemon.git"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt"
},
"dependencies": {
"tail": "^0.4.0",
"underscore": "~> 1.4.4",
"shelljs": "~0.3.0",
"tree-kill": "0.0.6"
},
"devDependencies": {
"connect": "~2.7.9",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.6",
"grunt-contrib-clean": "~0.4.1",
"grunt-contrib-jshint": "~0.4.3",
"grunt-contrib-nodeunit": "~0.1.2",
"grunt-contrib-watch": "~0.4.3",
"jquery": "~1.8.3",
"touch": "0.0.2"
},
"peerDependencies": {
"grunt": "~0.4.1"
},
"keywords": [
"grunt",
"node",
"gruntplugin",
"daemon",
"development",
"process",
"background"
]
}