-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
67 lines (67 loc) · 1.51 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
60
61
62
63
64
65
66
67
{
"name": "forever-webui",
"description": "Forever Web UI",
"version": "0.3.0",
"author": "Francois-Guillaume Ribreau (http://fgribreau.com)",
"contributors": [
{
"name": "Francois-Guillaume Ribreau",
"email": "[email protected]"
},
{
"name": "Rajiv Kilaparti",
"email": "[email protected]"
},
{
"name": "Philipp Sander",
"email": "[email protected]"
},
{
"name": "Toon Nelissen",
"email": "[email protected]"
}
],
"dependencies": {
"ansiparse": "0.0.5-1",
"async": "0.2.5",
"body-parser": "^1.12.3",
"bytes": "0.2.0",
"coffee-script": "1.5.0",
"colors": "^1.0.3",
"cookie-parser": "^1.3.4",
"crypto-js": "^3.1.4",
"ejs": "0.8.3",
"errorhandler": "^1.3.5",
"express": "4.12.2",
"express-session": "^1.11.1",
"forever": "0.10.0",
"method-override": "^2.3.2",
"morgan": "^1.5.2",
"passport": "0.1.16",
"passport-local": "0.1.6",
"underscore": "1.4.4"
},
"keywords": [
"forever",
"web ui"
],
"repository": "git://github.com/FGRibreau/forever-webui.git",
"main": "index",
"engines": {
"node": ">= 0.8.x"
},
"scripts": {
"clean": "make clean",
"test": "make test",
"start": "make start"
},
"devDependencies": {
"should": "1.2.2",
"mocha": "1.8.1",
"grunt": "~0.4.0",
"grunt-contrib-clean": "0.4.0",
"grunt-contrib-concat": "0.1.3",
"grunt-contrib-uglify": "0.1.2",
"grunt-contrib-cssmin": "0.4.1"
}
}