-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 862 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
32
{
"name": "cavern-quest",
"version": "1.0.0",
"description": "A simple game demonstrating Phaser scenes",
"main": "index.html",
"scripts": {
"build": "npm run clean && parcel build index.html --no-source-maps --public-url ./",
"start": "parcel serve index.html",
"clean": "rm -f dist/*",
"test": "npx eslint src",
"push": "npm run build && butler push dist samme/cavern-quest:browser",
"status": "butler status samme/cavern-quest"
},
"keywords": [
"phaser",
"phaser3"
],
"author": "samme",
"license": "ISC",
"dependencies": {
"phaser": "3.55.2",
"phaser-plugin-scene-watcher": "^6.0.0"
},
"devDependencies": {
"cssnano": "^4.1.11",
"eslint": "^7.26.0",
"eslint-config-semistandard": "^15.0.1"
},
"alias": {
"phaser": "./node_modules/phaser/src/phaser-arcade-physics.js"
}
}