-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "phaser-plugin-scene-watcher",
"version": "7.0.0",
"description": "Scene monitoring and debugging for Phaser 3",
"module": "dist/phaser-plugin-scene-watcher.esm.js",
"browser": "dist/phaser-plugin-scene-watcher.umd.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "npx eslint src/main.js",
"test:dist": "node -c dist/phaser-plugin-scene-watcher.umd.js",
"preversion": "npm run build; npm run test:dist; git add dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samme/phaser-plugin-scene-watcher.git"
},
"keywords": [
"phaser",
"phaser3",
"phaser-plugin",
"phaser3-plugin"
],
"author": "samme",
"license": "ISC",
"bugs": {
"url": "https://github.com/samme/phaser-plugin-scene-watcher/issues"
},
"homepage": "https://github.com/samme/phaser-plugin-scene-watcher#readme",
"devDependencies": {
"acorn": "^6.4.1",
"eslint": "^6.5.1",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"phaser": "3.80.1",
"rollup": "^1.21.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"peerDependencies": {
"phaser": "^3.16.2"
}
}