forked from djorg83/react-snake-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "react-snake-game",
"version": "1.0.9",
"description": "Snake game that can be embedded in any React app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp",
"dev": "gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/djorg83/react-snake-game.git"
},
"keywords": [
"react",
"snake",
"game"
],
"author": "Daniel Jorgensen",
"license": "MIT",
"bugs": {
"url": "https://github.com/djorg83/react-snake-game/issues"
},
"homepage": "https://github.com/djorg83/react-snake-game#readme",
"peerDependencies": {
"react": ">=0.14.0"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-inject-file": "^0.0.18",
"react": "^15.3.2"
}
}