forked from pixijs-userland/layers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.48 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": "pixi-layers",
"version": "0.2.3",
"description": "PixiJS v5 plugin, allows to change rendering order of containers without changing the scene graph.",
"author": "Ivan Popelyshev",
"contributors": [
"Ivan Popelyshev <[email protected]>"
],
"main": "./dist/pixi-layers.js",
"types": "./dist/pixi-layers.d.ts",
"homepage": "http://www.pixijs.com/",
"bugs": "https://github.com/pixijs/pixi-layers/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/pixi-layers.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",
"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/",
"CONTRIBUTING.md",
"LICENSE",
"package.json",
"tsconfig.json",
"README.md"
],
"devDependencies": {
"checkpack": "^0.3",
"del": "^2.2.0",
"mkdirp": "^0.5.1",
"parallelshell": "^2.0.0",
"rimraf": "^2.5.3",
"typescript": "^3.5.1",
"pixi.js-legacy": "^5.0.3"
}
}