forked from cristianbote/phaser-state-transition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 885 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": "phaser-state-transition",
"version": "2.5.1",
"description": "Phaser state transition plugin",
"main": "dist/phaser-state-transition.js",
"module": "dist/phaser-state-transition.m.js",
"umd:main": "dist/phaser-state-transition.umd.js",
"repository": {
"type": "git",
"url": "[email protected]:cristianbote/phaser-state-transition.git"
},
"files": [
"index.js",
"dist",
"README.md",
"LICENSE.md"
],
"keywords": [
"phaser",
"plugin",
"state",
"transition"
],
"scripts": {
"build": "rm -rf dist; microbundle build --output dist --target browser --name StateTransition",
"watch": "microbundle watch --output dist --target browser --name StateTransition --entry src/index.js"
},
"author": "Cristian Bote <[email protected]>",
"license": "ISC",
"devDependencies": {
"microbundle": "^0.4.3"
}
}