-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "phaser-plugin-debug-draw",
"version": "7.1.0",
"description": "Simple debug display for Phaser 3",
"main": "dist/phaser-plugin-debug-draw.umd.js",
"module": "dist/phaser-plugin-debug-draw.esm.js",
"browser": "dist/phaser-plugin-debug-draw.umd.js",
"files": [
"/dist",
"/src"
],
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"preversion": "npm run build && npm run test:dist && git add dist",
"test": "eslint src/main.js",
"test:dist": "node -c dist/phaser-plugin-debug-draw.umd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samme/phaser-plugin-debug-draw.git"
},
"keywords": [
"phaser-plugin",
"phaser3-plugin"
],
"author": "samme",
"license": "ISC",
"bugs": {
"url": "https://github.com/samme/phaser-plugin-debug-draw/issues"
},
"homepage": "https://github.com/samme/phaser-plugin-debug-draw#readme",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"phaser": "3.55.2",
"rollup": "^1.32.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"peerDependencies": {
"phaser": "^3.53.0"
}
}