forked from pixijs-userland/spine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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": "pixi-spine",
"version": "1.5.18",
"description": "Spine implementation for pixi v^3 and v^4",
"author": "Mat Groves",
"contributors": [
"Chad Engler <[email protected]>",
"Richard Davey <[email protected]>",
"Ivan Popelyshev <[email protected]>",
"Yevhenii Huselietov <[email protected]>"
],
"main": "./bin/pixi-spine.js",
"types": "./bin/pixi-spine.d.ts",
"homepage": "https://github.com/pixijs/pixi-spine",
"bugs": {
"url": "https://github.com/pixijs/pixi-spine/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/pixi-spine.git"
},
"scripts": {
"cleanup": "rimraf bin && mkdirp bin",
"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": [
"bin/",
"SPINE-LICENSE",
"package.json",
"README.md"
],
"devDependencies": {
"@types/lodash": "^4.14.108",
"checkpack": "^0.3",
"del": "~2.2.0",
"glob": "~7.1.1",
"mkdirp": "~0.5.1",
"parallelshell": "~2.0.0",
"pixi.js": "~4.8.1",
"rimraf": "~2.5.3",
"tmp": "^0.0.33",
"ts-helpers": "~1.1.2",
"typedoc": "^0.9.0",
"typescript": "^2.8.3"
},
"dependencies": {
"@types/pixi.js": "^4.8.0"
}
}