-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.22 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "js13k-hans",
"project": "js13k-hans-giant",
"version": "0.1.0",
"description": "Hans Fixes the Internet",
"main": "index.js",
"scripts": {
"start": "gulp build:html && gulp watch:build & static -H '{\"Cache-Control\": \"no-cache, must-revalidate\"}' ./build",
"test": "gulp compile:html && gulp watch:compile & static -z -H '{\"Cache-Control\": \"no-cache, must-revalidate\"}' ./compile",
"docs": "jsdoc -r -d ./docs ./src/katalyst/ && static -H '{\"Cache-Control\": \"no-cache, must-revalidate\"}' ./docs",
"package": "gulp compile:zip",
"advzip": "advzip releases/build.zip -4 -i 1000 -a compile/index.html",
"psize": "TOTAL=`gzip-size releases/build.zip --raw`;SUM=`echo $TOTAL - 13312 | bc`; echo $TOTAL bytes; echo $SUM bytes over"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aerze/js13k-base.git"
},
"keywords": [
"js13k",
"boilerplate",
"game",
"js",
"13k"
],
"author": "Gus Suarez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aerze/js13k-base/issues"
},
"homepage": "https://github.com/aerze/js13k-base#readme",
"devDependencies": {
"compression-webpack-plugin": "^1.1.11",
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"gulp": "^3.9.1",
"gulp-clean-css": "^3.10.0",
"gulp-concat-css": "^3.1.0",
"gulp-notify": "^3.2.0",
"gulp-rename": "^1.4.0",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-webpack": "^1.5.0",
"gulp-zip": "^4.2.0",
"handlebars": "^4.0.11",
"node-static": "^0.7.10",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-terser": "^2.0.2",
"rollup-stream": "^1.24.1",
"terser-webpack-plugin": "^1.0.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"webpack": "^4.16.5",
"webpack-closure-compiler": "^2.1.6"
},
"dependencies": {
"gzip-size-cli": "^3.0.0",
"html-inline": "^1.2.0",
"html-minifier": "^3.5.20",
"pretty-bytes-cli": "^2.0.0",
"run-sequence": "^2.2.1",
"terser": "^3.8.2"
}
}