forked from AndyGrom/node-deploy-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.39 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": "node-deploy-server",
"description": "Web service for deploy and run node.js applications",
"version": "0.2.0",
"author": "Gromozdov Andrey Alexandrovich",
"main": "../lib/server",
"repository": {
"type": "git",
"url": "git://github.com/andygrom/node-deploy-server.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/AndyGrom/node-deploy-server/blob/master/LICENSE.TXT"
}
],
"keywords": [
"deploy",
"daemon",
"service",
"linux",
"windows"
],
"dependencies": {
"express": "~3.4.4",
"tar": "~0.1.18",
"tmp": "~0.0.21",
"fstream": "~0.1.25",
"forever-monitor": "*",
"passport": "~0.1.17",
"colors": "*",
"optimist": "*",
"ejs": "*",
"mkdirp": "*",
"rimraf": "*",
"passport-local": "~0.1.6"
},
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.7.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-nodeunit": "~0.2.2",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.2.7",
"grunt-contrib-cssmin": "~0.7.0",
"grunt-angular-templates": "~0.5.1",
"grunt-release": "~0.6.0"
},
"bin": {
"node-deploy-server": "./bin/node-deploy-server"
},
"homepage": "https://github.com/AndyGrom/node-deploy-server",
"scripts": {
"install": "node ./scripts/install.js"
}
}