forked from soimy/maxrects-packer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.94 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
{
"name": "maxrects-packer",
"version": "2.4.5",
"description": "A max rectangle 2d bin packer for packing glyphs or images into multiple sprite-sheet/atlas",
"main": "dist/maxrects-packer.js",
"module": "dist/maxrects-packer.mjs",
"types": "dist/maxrects-packer.d.ts",
"scripts": {
"clean": "rimraf ./lib && rimraf ./dist",
"build": "tsc && rollup -c rollup.config.ts",
"build:clean": "npm run clean && npm run build",
"doc": "typedoc && touch docs/.nojekyll",
"doc:json": "typedoc --json docs/typedoc.json",
"doc:publish": "gh-pages --dotfiles=true -m \"[ci skip] Updates\" -d docs",
"test": "npm run build:clean && jest",
"cover": "npm run build:clean && jest --coverage",
"version": "standard-version",
"prepare-release": "npm run test && npm run version"
},
"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/jest": "^24.0.13",
"@types/node": "^12.0.2",
"ascii-table": "0.0.9",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^2.0.1",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"rollup": "^1.12.3",
"rollup-plugin-dts": "^0.15.1",
"rollup-plugin-uglify": "^6.0.2",
"rollup-plugin-uglify-es": "0.0.1",
"standard-version": "^6.0.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"tslib": "^1.9.3",
"tslint": "^5.16.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.15.0",
"typescript": "^3.4.5"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}