forked from pixijs/tilemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.55 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
{
"name": "pixi-tilemap",
"version": "2.0.0",
"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": "./dist/pixi-tilemap.js",
"types": "./dist/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": {
"cleanup": "rimraf dist && mkdirp dist",
"prestart": "yarn cleanup",
"start": "parallelshell \"yarn watch\"",
"watch": "tsc -w",
"prebuild": "yarn cleanup",
"make:dts": "node scripts/make_dts.js",
"build": "tsc && yarn make:dts",
"docs": "typedoc --out ./docs/ --readme README.md ./src/",
"check:browserify": "yarn checkpack browserify -e test/checkpack.ts",
"check:webpack": "yarn checkpack webpack -e test/checkpack.ts",
"check:vanillajs": "yarn checkpack vanillajs -e test/checkpack.ts",
"check:all": "yarn build && yarn check:browserify && yarn check:webpack && yarn check:vanillajs"
},
"files": [
"dist/",
"src/",
"LICENSE",
"package.json",
"README.md"
],
"devDependencies": {
"checkpack": "^0.3",
"del": "^2.2.0",
"jaguarjs-jsdoc": "^1.0.1",
"jsdoc": "^3.4.0",
"mkdirp": "^0.5.1",
"pixi.js": "~5.0.4",
"parallelshell": "^2.0.0",
"rimraf": "^2.5.3",
"typescript": "^2.8.3"
}
}