forked from pixijs/tilemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "pixi-tilemap",
"version": "1.2.1",
"description": "Pixi-tilemap provides tilemap shaders and tilemap renderer for pixi.js (v3 and v4). Used in rpgmaker MV.",
"author": "Ivan Popelyshev",
"contributors": [
"Ivan Popelyshev <[email protected]>"
],
"main": "./bin/pixi-tilemap.js",
"types": "./bin/pixi-tilemap.d.ts",
"homepage": "http://www.rpgmakerweb.com/",
"bugs": "https://github.com/pixijs/pixi-tilemap/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/pixi-tilemap.git"
},
"scripts": {
"clean": "rimraf bin && mkdirp bin",
"prestart": "npm run clean",
"start": "parallelshell \"npm run watch\"",
"watch": "tsc -w",
"prebuild": "npm run clean",
"build": "tsc",
"docs": "jsdoc -c scripts/jsdoc.conf.json -R README.md"
},
"files": [
"bin/",
"src/",
"CONTRIBUTING.md",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"glslify": "^5.0.2"
},
"devDependencies": {
"del": "^2.2.0",
"jaguarjs-jsdoc": "^1.0.1",
"jsdoc": "^3.4.0",
"mkdirp": "^0.5.1",
"parallelshell": "^2.0.0",
"rimraf": "^2.5.3",
"typescript": "^2.0.3"
}
}