-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 KB
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
{
"name": "js13k-2019",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"start": "parcel index.html",
"build": "rm -rf dist && parcel build index.html --no-source-maps && mv dist public",
"check-file-size": "node ./scripts/check-file-size.js",
"inline-build": "html-inline -i ./public/index.html -o ./public/index2.html && mv ./public/index2.html ./public/index.html",
"build-zipped": "npm run build && npm run inline-build && node ./scripts/zip-file.js",
"party": "npm run build-zipped && npm run check-file-size"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chinchang/js13k-2019.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/chinchang/js13k-2019/issues"
},
"homepage": "https://github.com/chinchang/js13k-2019#readme",
"dependencies": {
"parcel-bundler": "^1.12.3"
},
"browserslist": [
"last 3 Chrome versions"
],
"devDependencies": {
"archiver": "^3.1.1",
"chalk": "^2.4.2",
"html-inline": "^1.2.0"
}
}