-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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
{
"name": "phaser-tutorial",
"version": "1.0.0",
"description": "Just a repo for learning the Phaser game engine",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html",
"build-prod": "parcel build src/index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/szerhusenBC/phaser-tutorial.git"
},
"keywords": [],
"author": "Stephan Zerhusen",
"license": "MIT",
"bugs": {
"url": "https://github.com/szerhusenBC/phaser-tutorial/issues"
},
"homepage": "https://github.com/szerhusenBC/phaser-tutorial#readme",
"devDependencies": {
"minimist": "^1.2.5",
"parcel-bundler": "^1.12.5",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-plugin-static-files-copy": "^2.6.0",
"sass": "^1.38.0",
"typescript": "^4.3.5"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
},
"dependencies": {
"phaser": "^3.55.2"
}
}