-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.73 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
53
54
55
56
57
58
59
60
61
62
{
"name": "phaser-plugin-inspector",
"version": "2.5.0",
"description": "View and change Phaser 3 game properties",
"module": "dist/phaser-plugin-inspector.esm.js",
"browser": "dist/phaser-plugin-inspector.umd.js",
"files": [
"dist",
"src"
],
"directories": {
"test": "test"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"acorn": "^6.4.1",
"chai": "^4.2.0",
"eslint": "^8.57.1",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^10.8.2",
"phaser": "3.87.0",
"rollup": "^2.23.0",
"tweakpane": "3.1.10"
},
"peerDependencies": {
"phaser": "^3.60.0",
"tweakpane": "^3.1.0"
},
"scripts": {
"build": "rollup -c",
"clean": "rm dist/*.js",
"dev": "rollup -c -w",
"postbuild": "node -c dist/phaser-plugin-inspector.umd.js",
"vendor": "cp -v node_modules/tweakpane/dist/tweakpane.js node_modules/mocha/mocha.{css,js} node_modules/chai/chai.js node_modules/phaser/dist/phaser.js vendor/",
"preversion": "npm run build",
"test": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samme/phaser-plugin-inspector.git"
},
"keywords": [
"phaser",
"phaser-plugin",
"phaser3",
"phaser3-plugin",
"tweakpane"
],
"author": "samme",
"license": "ISC",
"bugs": {
"url": "https://github.com/samme/phaser-plugin-inspector/issues"
},
"homepage": "https://github.com/samme/phaser-plugin-inspector#readme"
}