-
Notifications
You must be signed in to change notification settings - Fork 218
/
Copy pathpackage.json
65 lines (65 loc) · 1.68 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
61
62
63
64
65
{
"name": "pixi-spine",
"version": "1.1.3",
"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",
"homepage": "https://github.com/pixijs/pixi-spine",
"bugs": {
"url": "https://github.com/pixijs/pixi-spine/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"pixi.js": "^3.0.9"
},
"scripts": {
"clean": "rimraf bin && mkdirp bin",
"prestart": "npm run clean",
"start": "parallelshell \"npm run watch\"",
"watch": "pixify-ts -n PIXI.spine -o pixi-spine -w",
"watch:lint": "watch \"jshint --reporter=scripts/reporter.js scripts src test || exit 0\" src",
"lint": "jshint --reporter=scripts/reporter.js scripts src",
"prebuild": "npm run clean",
"build": "pixify-ts -n PIXI.spine -o pixi-spine",
"docs": "jsdoc -c scripts/jsdoc.conf.json -R README.md"
},
"files": [
"bin/",
"build-es6/",
"src/",
"CONTRIBUTING.md",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"glslify": "^5.0.2"
},
"devDependencies": {
"browserify-versionify": "^1.0.6",
"del": "^2.2.0",
"jaguarjs-jsdoc": "^1.0.1",
"jsdoc": "^3.4.0",
"jshint": "^2.9.2",
"jshint-stylish": "^2.2.0",
"jshint-stylish-summary": "^0.1.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"parallelshell": "^2.0.0",
"pixify-ts": "^1.4.0",
"rimraf": "^2.5.3",
"watch": "^0.19.1"
},
"browserify": {
"transform": [
"glslify",
"browserify-versionify"
]
}
}