-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 964 Bytes
/
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
{
"name": "phaserjs-html5-snake-game",
"version": "1.0.0",
"description": ".: A simple classic snake with PhaserJS :.",
"main": "index.js",
"script": {
"postinstall": "grunt default",
"start": "node server.js"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stannesi/phaserJS-HTML5-snake-game.git"
},
"author": "stannesi",
"license": "MIT",
"bugs": {
"url": "https://github.com/stannesi/phaserJS-HTML5-snake-game/issues"
},
"homepage": "https://github.com/stannesi/phaserJS-HTML5-snake-game#readme",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"express": "^4.13.3",
"grunt-contrib-uglify": "^0.10.0",
"grunt": "^0.4.5",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-watch": "^0.6.1"
}
}