-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "pixi-packer",
"version": "3.2.1",
"description": "A quick and flexible texture packer for PIXI.js",
"scripts": {
"pretest": "eslint lib test example.js",
"test": "mocha --recursive test"
},
"engines": {
"node": ">=4"
},
"main": "index.js",
"repository": "gamevy/pixi-packer",
"bin": "./cli.js",
"author": "Marek Ventur <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^3.0.0",
"image-type": "^2.1.0",
"imagemin-jpegtran": "^5.0.0",
"imagemin-pngquant": "^5.0.0",
"mocha": "~3.1.0",
"mocha-image-compare": "^1.0.3",
"sinon": "~1.17.3",
"sinon-chai": "~2.8.0"
},
"dependencies": {
"cli-cursor": "^1.0.2",
"cli-spinner": "^0.2.5",
"concat-stream": "^1.5.1",
"es6-promisify": "^5.0.0",
"filesize": "^3.3.0",
"glob": "^7.0.3",
"gm": "^1.21.1",
"gmsmith": "^1.1.0",
"graceful-fs": "^4.1.15",
"image-size": "^0.5.0",
"is-ci": "^1.0.8",
"mkdirp": "^0.5.1",
"multi-bin-packer": "^1.1.2",
"promise-limit": "^2.1.1",
"promise-queue": "^2.2.3",
"rimraf": "^2.4.1",
"underscore": "^1.8.3",
"yargs": "^6.0.0"
},
"files": [
"lib",
"cli.js",
"index.js"
]
}