-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 984 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
37
{
"name": "teapot-not-found-poker",
"version": "1.0.0",
"description": "game is an entry for 2020 js13k contest",
"main": "",
"scripts": {
"start": "gulp watch",
"build": "gulp build",
"zip": "gulp zip"
},
"author": "Sergey Chernykh",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/serglider/TeapotNotFoundPoker.git"
},
"devDependencies": {
"browser-sync": "^2.26.12",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-htmlmin": "^5.0.1",
"gulp-uglify": "^3.0.2",
"gulp-zip": "^5.0.2",
"prettier": "^2.0.5",
"google-closure-compiler": "^20200719.0.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"quoteProps": "preserve"
},
"dependencies": {}
}