-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "phaser-ball-shoot",
"version": "1.0.0",
"description": "A basic ball shooting game",
"main": "index.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"phaser": "^3.23.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-strip": "^1.3.3",
"@rollup/plugin-url": "^5.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rollup": "^2.10.2",
"rollup-plugin-terser": "^5.3.0"
},
"scripts": {
"clean": "rm -rf dist/*.js dist/*.map dist/*.png build.zip",
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel start watch",
"lint": "eslint './src/**/*.{js,jsx}'",
"lint:fix": "eslint './src/**/*.{js,jsx}' --fix",
"start": "live-server dist",
"package": "zip -r build.zip dist",
"publish:itch": "butler push build.zip readwriteexercise/tip-dunk-shootout:html5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bradydowling/phaser-ball-shoot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bradydowling/phaser-ball-shoot/issues"
},
"homepage": "https://github.com/bradydowling/phaser-ball-shoot#readme"
}