-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1022 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1022 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "arcade-polygons-plugin",
"version": "1.0.0",
"description": "A Phaser plugin that enables polygons in arcade physics.",
"main": "src/ArcadePolygons.js",
"scripts": {
"start": "gulp watch",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "[email protected]:michaeljcalkins/arcade-polygons-plugin.git"
},
"keywords": [
"phaser",
"plugin",
"arcade",
"physics",
"polygons",
"collision",
"collisions",
"collision handling",
"collision detection",
"games"
],
"author": "Michael Calkins <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/michaeljcalkins/arcade-polygon-plugin",
"standard": {
"globals": [
"Phaser",
"SAT"
]
},
"dependencies": {
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.0.1",
"gulp-util": "^3.0.8",
"poly-decomp": "^0.2.1",
"sat": "^0.6.0",
"babelify": "^7.3.0",
"gulp-browserify": "^0.5.1"
}
}