-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "phaser-tilemap-plus",
"version": "0.10.2",
"description": "Tilemap animations, physics, events and custom property enhancements for Tiled JSON map files",
"main": "dist/phaser-tilemap-plus.js",
"scripts": {
"build": "webpack -p",
"dev": "webpack -d",
"test": "mocha --require babel-register tests/*.js --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colinvella/phaser-tilemap-plus.git"
},
"keywords": [
"phaser",
"tiled",
"tilemap",
"animation",
"physics",
"events",
"properties",
"game"
],
"author": "Colin Vella <colinvella@gmail.com> (https://github.com/colinvella)",
"license": "MIT",
"bugs": {
"url": "https://github.com/colinvella/phaser-tilemap-plus/issues"
},
"homepage": "https://github.com/colinvella/phaser-tilemap-plus#readme",
"dependencies": {
"lodash": "^4.17.4",
"phaser-ce": "^2.9.1",
"poly-decomp": "^0.2.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"expose-loader": "^0.7.3",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.9.1"
}
}