-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "js-game-server",
"description": "Sandboxed JavaScript Game Server",
"version": "0.1.1",
"author": "Aurélio A. Heckert <[email protected]>",
"contributors": [
"Florent Cailhol <[email protected]>"
],
"license": "AGPLv3",
"keywords": [
"game",
"server",
"sandbox"
],
"repository": "aurium/js-game-server",
"engines": {
"node": ">=0.10"
},
"dependencies": {
"chalk": "~1.1.1",
"commander": "~2.8.1",
"ejs": "~2.3.3",
"express": "~4.13.3",
"serve-static": "~1.10.0",
"merge": "~1.2.0",
"sandboxer": "~0.2.0",
"socket.io": "~1.3.6",
"stylus": "~0.52.0",
"winston": "~1.0.1"
},
"devDependencies": {
"eslint": "~1.2.1",
"mocha": "~2.2.5",
"shelljs": "~0.5.3",
"should": "~7.0.4",
"sinon": "~1.16.1"
},
"main": "./index.js",
"scripts": {
"start": "node ./index.js",
"lint": "eslint index.js lib/ test/",
"test": "npm run-script lint && mocha --reporter spec"
},
"bin": {
"js13k": "./bin/js13k",
"js13k-install": "./bin/js13k-install",
"js13k-uninstall": "./bin/js13k-uninstall"
},
"subdomain": "js13kserver"
}