-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 841 Bytes
/
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
{
"name": "phaser-parcel-audio-test",
"version": "1.0.0",
"description": "A Phaser 3 game template using Parcel bundler",
"main": "src/index.html",
"scripts": {
"build": "parcel build src/index.html --public-url ./",
"watch": "parcel watch src/index.html",
"start": "parcel serve src/index.html --open",
"clean": "rm -v dist/*",
"test": "eslint src"
},
"keywords": [
"phaser",
"phaser3"
],
"author": "samme",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"phaser": "^3.20.0"
}
}