-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.02 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
{
"name": "snake_js",
"version": "1.0.0",
"description": "A classic game allows user to control a moving snake and collect food. Every time the snake collects the food, it would score a point, and the length of its body would increase. It would get more difficult for a snake to move as its body grows longer. Whenever the snake hits the wall or its own body, the game is over.",
"main": "webpack.config.js",
"scripts": {
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juzen2003/Snake.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/juzen2003/Snake/issues"
},
"homepage": "https://github.com/juzen2003/Snake#readme",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"lodash": "^4.17.5",
"webpack": "^3.11.0"
}
}