-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "the-snake-game",
"version": "1.0.0",
"description": "The famous Snake Game made with JavaScript",
"main": "index.js",
"scripts": {
"build": "gulp build",
"watch": "gulp watch",
"play": "node ./scripts/play.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kundanb/the-snake-game.git"
},
"author": "Kundan Bhasin <[email protected]> (https://kundanb.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kundanb/the-snake-game/issues"
},
"homepage": "https://github.com/kundanb/the-snake-game#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"del": "^6.0.0",
"eslint": "^7.9.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-cssnano": "^2.1.3",
"gulp-sass": "^4.1.0",
"gulp-uglify": "^3.0.2",
"node-sass": "^4.14.1"
},
"dependencies": {
"chrome-launcher": "^0.13.4"
}
}