-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "sprite-packer",
"version": "1.0.5",
"description": "Convert a bunch of images to spritesheet with JSON sprite data",
"keywords": [
"webp",
"spritesheet",
"sprites",
"sprite"
],
"main": "./dist/Index.js",
"scripts": {
"prepublish": "node source/Compiler.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"packer": "./dist/Bin/Packer.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Milewski/sprite-packer"
},
"bugs": {
"url": "https://github.com/Milewski/sprite-packer/issues"
},
"homepage": "https://github.com/Milewski/sprite-packer",
"author": "Rafael Milewski",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.6",
"calipers": "^2.0.0",
"calipers-bmp": "^2.0.0",
"calipers-gif": "^2.0.0",
"calipers-jpeg": "^2.0.0",
"calipers-png": "^2.0.0",
"calipers-svg": "^2.0.0",
"calipers-webp": "^2.0.0",
"chalk": "^1.1.3",
"fs-extra": "^1.0.0",
"glob": "^7.1.1",
"gm": "^1.23.0",
"jsonfile": "^2.4.0",
"jsonschema": "^1.1.0",
"pngquant-bin": "^3.1.1",
"typescript": "^2.0.9",
"yargs": "^6.3.0"
},
"devDependencies": {
"@types/bluebird": "^3.0.35",
"@types/chalk": "^0.4.31",
"@types/glob": "^5.0.30",
"@types/gm": "^1.17.29",
"@types/jsonschema": "^0.0.4",
"@types/node": "^6.0.46",
"@types/typescript": "^0.4.29",
"@types/yargs": "^6.3.1",
"tslint": "^3.15.1",
"typescript": "^2.0.9",
"yarn": "^0.16.1"
}
}