-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "flup",
"version": "0.0.1",
"description": "Stereotypical puzzle game.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server -d",
"tsc": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts' -e 'src/**/*.d.ts' --fix",
"build:clean": "rm -rf dist",
"build": "npm run build:clean && webpack-cli --mode production --optimize-minimize && cp -r src/graphics dist/ && cp src/index.html dist/",
"publish": "npm run build && ./publish.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/geon/flup.git"
},
"author": "Victor Widell <[email protected]> (http://geon.github.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/geon/flup/issues"
},
"homepage": "https://github.com/geon/flup",
"devDependencies": {
"prettier": "^3.1.0",
"ts-loader": "^4.4.2",
"tslint": "^5.8.0",
"typescript": "^5.3.2",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"prettier": {
"useTabs": true,
"trailingComma": "all"
}
}