-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·47 lines (47 loc) · 1.11 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
{
"name": "Snake",
"version": "0.1.0",
"description": "A boundless snake",
"dependencies": {
"socket.io": "~1.0.6",
"node-uuid": "~1.4.1",
"async": "~0.2.8",
"jquery": "~2.1.0",
"socket.io-client": "~1.0.6",
"mobile-agent": "~0.0.8"
},
"scripts": {
"start": "node server/app.js",
"test": "node_modules/grunt-cli/bin/grunt test"
},
"repository": {
"type": "git",
"url": "git://github.com/overflowgames/snake.git"
},
"keywords": [
"snake",
"boundless",
"game",
"multiplayer"
],
"devDependencies": {
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-cli": "~0.1.13",
"grunt-contrib-htmlmin": "~0.2.0",
"grunt-contrib-cssmin": "~0.9.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-csslint": "~0.2.0",
"grunt-html": "~1.2.0",
"grunt-contrib-nodeunit": "~0.3.3",
"grunt-replace": "~0.7.7",
"grunt-exec": "~0.4.5",
"grunt-inline": "~0.3.0",
"grunt-jslint": "~1.1.12",
"grunt-contrib-clean": "~0.5.0"
},
"engines": {
"node": "0.10.x"
},
"main" : "server/app.js"
}