generated from kirbysayshi/game-bucket
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.72 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
{
"name": "game-bucket",
"version": "6.0.0",
"description": "Common game utilities + rollup config, suitable for a small game competition. Like [JS13k](http://js13kgames.com/)!",
"files": [
"dist"
],
"dependencies": {
"pocket-physics": "^9.0.1",
"science-halt": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@kirbysayshi/ts-run": "^6.0.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-url": "^5.0.1",
"gh-pages": "^3.1.0",
"html-minifier": "^4.0.0",
"http-server": "^0.12.3",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^2.1.1",
"rollup": "^2.26.5",
"rollup-plugin-copy": "^3.3.0",
"svgo": "^1.3.2",
"terser": "^5.3.0",
"typescript": "^4.0.2"
},
"scripts": {
"types": "tsc",
"build": "rollup -c",
"start": "./tools/start.sh",
"zip": "./tools/zip.sh",
"deploy": "yarn zip && gh-pages -d dist/",
"clean": "rm -rf dist",
"test": "for f in src/*.test.ts; do ts-run $f; done;"
},
"author": "Drew Petersen <[email protected]>",
"license": "MIT",
"//browserslist": "Prevent babel from over-transpiling anything",
"browserslist": [
"chrome 75"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css,md}": "prettier --write"
}
}