forked from riebel/pixi-tiledmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.69 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
51
52
53
54
55
56
57
58
59
60
{
"name": "@seiyria/pixi-tiledmap",
"version": "1.12.0",
"description": "Pixi.js Tiled map editor plugin",
"keywords": [
"pixi",
"pixi.js",
"tiled",
"tilemap",
"tiledmap",
"tmx"
],
"author": "Kyle Kemp <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/riebel/pixi-tiledmap.git"
},
"license": "MIT",
"main": "dist/pixi-tiledmap.js",
"types": "dist/pixi-tiledmap.d.ts",
"scripts": {
"start": "webpack-dev-server -d",
"prepublish": "npm run build",
"build": "tsc --declaration && webpack -p && typedoc --out docs",
"lint": "tslint --project ./tsconfig.json"
},
"bugs": {
"url": "https://github.com/riebel/pixi-tiledmap/issues"
},
"homepage": "https://github.com/riebel/pixi-tiledmap#readme",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-typescript": "^7.3.3",
"@types/node": "^11.13.7",
"@types/pixi.js": "^4.8.7",
"@types/webpack-env": "^1.13.9",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"html-webpack-plugin": "^3.2.0",
"pixi.js": "^4.8.7",
"source-map-loader": "^0.2.4",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"typedoc": "^0.14.2",
"typescript": "^3.4.5",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"tmx-parser": "^1.5.0"
},
"registry": "npm"
}