forked from soimy/maxrects-packer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "maxrects-packer",
"version": "2.0.0",
"description": "A max rectangle 2d bin packer for packing glyphs or images into multiple sprite-sheet/atlas",
"main": "lib/maxrects_packer.js",
"types": "lib/maxrects_packer.d.ts",
"typings": "definitions/index",
"scripts": {
"build": "tsc",
"test": "mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec --timeout 30000 test/*"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/soimy/maxrects-packer.git"
},
"keywords": [
"spritesheet",
"atlas",
"bin",
"pack",
"max",
"rect"
],
"author": "YM Shen <[email protected]> (http://github.com/soimy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/soimy/maxrects-packer/issues"
},
"homepage": "https://github.com/soimy/maxrects-packer#readme",
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/mocha": "^2.2.44",
"@types/node": "^8.5.1",
"ascii-table": "0.0.9",
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"ts-node": "^4.0.2",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.6.2"
},
"dependencies": {}
}