-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
33 lines (33 loc) · 973 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
33
{
"name": "phaser3-typescript-spine",
"version": "1.0.0",
"description": "Example project for Spine animations in Phaser 3 with TypeScript plus SpinePlugin typing files!",
"scripts": {
"start": "parcel src/index.html -p 8000",
"build": "parcel build src/index.html --out-dir dist --public-url ./",
"build-gh": "parcel build src/index.html --out-dir dist --public-url /phaser3-typescript-spine/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "supertommy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ourcade/phaser3-typescript-spine.git"
},
"homepage": "https://github.com/ourcade/phaser3-typescript-spine",
"devDependencies": {
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-plugin-static-files-copy": "^2.2.1",
"typescript": "^3.7.4"
},
"dependencies": {
"phaser": "^3.22.0"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
}
}