forked from svidgen/shooty-ship-13k
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.27 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
{
"name": "shooty-ship-13k",
"version": "1.0.0",
"description": "Shooty Ship 13k Edition",
"scripts": {
"test": "jest",
"build": "rimraf dist && webpack",
"build:watch": "webpack --mode development --progress --watch -o ./dist",
"serve": "http-server ./dist -p 9999 -o",
"start": "concurrently -k -p \"[{name}]\" -n \"Build,Serve\" -c \"cyan.bold,green.bold\" \"npm run build:watch\" \"npm run serve\"",
"advzip:ss-tiny": "rimraf dist/js/game.js.map && rimraf game.zip && cd dist && zip -9 -r ../game.zip ./* && cd .. && advzip -z -4 -i 20 game.zip",
"js13k": "yarn build && yarn advzip:ss-tiny"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svidgen/shooty-ship-13k.git"
},
"author": "Jon Wire",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/svidgen/shooty-ship-13k/issues"
},
"homepage": "https://github.com/svidgen/shooty-ship-13k#readme",
"devDependencies": {
"concurrently": "^6.0.2",
"copy-webpack-plugin": "^8.1.0",
"css-loader": "^5.2.0",
"file-loader": "^6.2.0",
"http-server": "^0.12.3",
"jsdom": "^16.5.2",
"marked": "^2.0.1",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"wirejs-dom": "^1.0.3"
}
}