-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 1.24 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
{
"name": "js13k-boilerplate",
"version": "1.0.0",
"description": "---",
"main": "src/main.js",
"scripts": {
"clean": "rm -rf build/; mkdir -p build",
"build": "NODE_ENV=production webpack --config webpack.config --progress --colors",
"watch": "webpack --config webpack.config --colors --watch",
"test": "echo \"Error: no test specified\" && exit 0",
"zip": "cd build; zip -r ../build.zip .; cd ..; wc -c build.zip",
"lint": "eslint ./src --fix",
"package": "npm run clean && npm run build && npm run zip",
"prepush": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voronianski-on-games/js13kGames-boilerplate.git"
},
"author": "Dmitri Voronianski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/voronianski-on-games/js13kGames-boilerplate/issues"
},
"homepage": "https://github.com/voronianski-on-games/js13kGames-boilerplate#readme",
"devDependencies": {
"compression-webpack-plugin": "^0.3.1",
"envify": "^3.4.1",
"eslint": "^3.3.0",
"html-webpack-plugin": "^2.22.0",
"husky": "^0.11.6",
"stats.js": "^0.16.0",
"transform-loader": "^0.2.3",
"webpack": "^1.13.1"
},
"dependencies": {}
}