-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.51 KB
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
{
"name": "phaser-plugin-pause-render",
"version": "0.1.3",
"main": "dist/phaser-plugin-pause-render.cjs.js",
"module": "dist/phaser-plugin-pause-render.esm.js",
"browser": "dist/phaser-plugin-pause-render.umd.js",
"devDependencies": {
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.1.1",
"phaser": "3.22.0",
"rollup": "^1.32.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-serve": "^1.0.2"
},
"peerDependencies": {
"phaser": "^3.22.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node -c dist/phaser-plugin-pause-render.umd.js",
"pretest": "eslint src && npm run build",
"clean": "rm dist/*.js"
},
"files": [
"dist",
"src"
],
"description": "Pause or resume rendering",
"homepage": "https://github.com/samme/phaser-plugin-pause-render",
"directories": {
"test": "test"
},
"dependencies": {
"acorn": "^6.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/samme/phaser-plugin-pause-render.git"
},
"keywords": [
"phaser",
"phaser3",
"phaser-plugin",
"phaser3-plugin"
],
"author": "samme",
"license": "ISC"
}