-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
52 lines (52 loc) · 1.44 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "phaser-ui-tools",
"version": "2.0.0-beta",
"description": "User Interface objects for the phaser game engine.",
"author": "Joshua Fehler <[email protected]>",
"repository": "github:jsfehler/phaser-ui-tools",
"license": "MIT",
"main": "dist/phaser-ui-tools.js",
"unpkg": "dist/phaser-ui-tools.min.js",
"files": [
"dist/phaser-ui-tools.js",
"dist/phaser-ui-tools.min.js"
],
"scripts": {
"build:js": "webpack",
"test": "mocha-headless-chrome -f tests/testrunner.html",
"test3": "mocha-headless-chrome -f tests/testrunner_phaser3.html",
"copyToExamplesLib": "copyfiles -f dist/phaser-ui-tools.js docs/examples/lib/",
"build:docs": "documentation build src/** -f html -o docs"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"babel-loader": "^9.1.3",
"chai": "^4.3.4",
"copyfiles": "^2.4.1",
"documentation": "^14.0.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-webpack-plugin": "^4.0.1",
"mocha": "^10.2.0",
"mocha-headless-chrome": "^4.0.0",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"phaser": "^3.60.0",
"phaser-ce": "2.20.0"
},
"peerDependenciesMeta": {
"phaser-ce": {
"optional": true
},
"phaser": {
"optional": true
}
},
"dependencies": {
"eventemitter3": "^5.0.1"
}
}