forked from pixijs/pixijs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.8 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
66
67
68
69
70
71
72
73
{
"name": "pixi.js",
"version": "3.0.9",
"description": "Pixi.js is a fast lightweight 2D library that works across all devices.",
"author": "Mat Groves",
"contributors": [
"Chad Engler <chad@pantherdev.com>",
"Richard Davey <rdavey@gmail.com>"
],
"main": "./src/index.js",
"homepage": "http://goodboydigital.com/",
"bugs": "https://github.com/pixijs/pixi.js/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/pixi.js.git"
},
"scripts": {
"start": "gulp && gulp watch",
"test": "gulp && testem ci",
"build": "gulp",
"docs": "jsdoc -c ./gulp/util/jsdoc.conf.json -R README.md"
},
"files": [
"bin/",
"src/",
"CONTRIBUTING.md",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"async": "^1.5.0",
"brfs": "^1.4.1",
"earcut": "^2.0.7",
"eventemitter3": "^1.1.1",
"object-assign": "^4.0.1",
"resource-loader": "^1.6.4"
},
"devDependencies": {
"browserify": "^11.1.0",
"chai": "^3.2.0",
"del": "^2.0.2",
"gulp": "^3.9.0",
"gulp-cached": "^1.1.0",
"gulp-concat": "^2.6.0",
"gulp-debug": "^2.1.0",
"gulp-header": "^1.7.1",
"gulp-jshint": "^1.11.2",
"gulp-mirror": "^0.4.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.4.1",
"gulp-util": "^3.0.6",
"jaguarjs-jsdoc": "git+https://github.com/davidshimjs/jaguarjs-jsdoc.git",
"jsdoc": "^3.3.2",
"jshint-summary": "^0.4.0",
"minimist": "^1.2.0",
"mocha": "^2.3.2",
"require-dir": "^0.3.0",
"run-sequence": "^1.1.2",
"testem": "^0.9.4",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.4.0"
},
"browserify": {
"transform": [
"brfs"
]
}
}