-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 841 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 841 Bytes
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
{
"name": "phaser3_scene_plugin_template",
"private": true,
"version": "0.1.0",
"description": "A Scene Plugin template for Phaser 3",
"source": "src/main.js",
"main": "dist/phaser3-scene-plugin-template.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rm -rf dist",
"build": "microbundle -f cjs"
},
"repository": {
"type": "git",
"url": "git+https://umeruma@github.com/umeruma/phaser3-scene-plugin-template.git"
},
"author": "umeruma",
"license": "MIT",
"bugs": {
"url": "https://github.com/umeruma/phaser3-scene-plugin-template/issues"
},
"homepage": "https://github.com/umeruma/phaser3-scene-plugin-template#readme",
"devDependencies": {
"microbundle": "^0.11.0",
"phaser": "^3.18.1",
"braces": ">=2.3.1"
},
"dependencies": {}
}