-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.75 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
68
69
70
71
{
"name": "fog",
"version": "0.0.0",
"description": "buy. play. win.",
"main": "./lib/index.js",
"directories": {
"app": "./app",
"public": "./public",
"bin": "./bin",
"man": "./doc/man",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"postinstall": "bower i",
"start": "if ! ps -ef | grep mongod | grep -vq grep; then echo 'no mongo' && exit; fi && node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/power-cosmic/fog.git"
},
"keywords": [
"games",
"play",
"full-software"
],
"contributors": [
{
"name": "Eddie Gurnee",
"email": "<[email protected]>"
},
{
"name": "Tyler Hoffman",
"email": "<[email protected]>"
},
{
"name": "Cade Sperlich",
"email": "<[email protected]>"
}
],
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/power-cosmic/fog/issues"
},
"homepage": "https://github.com/power-cosmic/fog#readme",
"devDependencies": {
"chai": "^3.3.0",
"istanbul": "^0.3.20",
"mocha": "^2.3.3",
"sinon": "^1.16.1"
},
"dependencies": {
"ajaxer": "git+https://github.com/power-cosmic/ajaxer.git",
"body-parser": "~1.8.0",
"cookie-parser": "^1.4.0",
"decompress-zip": "latest",
"ejs": "^1.0.0",
"express": "latest",
"express-session": "^1.12.1",
"fstream": "latest",
"method-override": "~2.2.0",
"mongodb": "latest",
"morgan": "latest",
"multer": "latest",
"nodemailer": "latest",
"requirator": "git+https://github.com/power-cosmic/requirator.git",
"unzip2": "latest"
}
}