forked from pixijs-userland/spine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.75 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
{
"name": "pixi-spine",
"version": "2.1.7",
"description": "Spine implementation for pixi v^5",
"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": "npx rimraf bin && npx mkdirp bin",
"prestart": "npx yarn cleanup",
"start": "npx parallelshell \"npx yarn watch\"",
"watch": "npx tsc -w",
"prebuild": "npx yarn cleanup",
"make:dts": "node scripts/make_dts.js",
"build": "npx tsc && npx yarn make:dts",
"docs": "npx typedoc --out ./docs/ --readme README.md ./src/",
"check:browserify": "npx yarn checkpack browserify -e test/checkpack.ts",
"check:webpack": "npx yarn checkpack webpack -e test/checkpack.ts",
"check:vanillajs": "npx yarn checkpack vanillajs -e test/checkpack.ts",
"check:all": "npx yarn build && npx yarn check:browserify && npx yarn check:webpack && npx 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-legacy": "~5.1.1",
"rimraf": "~2.5.3",
"tmp": "^0.0.33",
"ts-helpers": "~1.1.2",
"typedoc": "^0.9.0",
"typescript": "^3.5.3"
}
}