-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 857 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 857 Bytes
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
{
"name": "phaser-plugin-update",
"version": "2.1.0",
"description": "Runs a Game Object's `update` method automatically.",
"main": "src/index.js",
"scripts": {
"preversion": "npm run test && npm run build && npm run test:dist && git add dist",
"test": "npx eslint src/index.js",
"test:dist": "node -c dist/PhaserUpdatePlugin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samme/phaser-plugin-update.git"
},
"keywords": [
"phaser",
"phaser3",
"phaser-plugin",
"phaser3-plugin"
],
"author": "samme",
"license": "ISC",
"bugs": {
"url": "https://github.com/samme/phaser-plugin-update/issues"
},
"homepage": "https://github.com/samme/phaser-plugin-update#readme",
"devDependencies": {
"phaser": "3.88.0"
},
"peerDependencies": {
"phaser": "^3.16.2"
}
}