forked from pixijs-userland/spine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "pixi-spine",
"version": "1.3.6",
"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]>"
],
"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": {
"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"
],
"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"
},
"dependencies": {
"@types/pixi.js": "^4.1.0"
}
}