-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 2.13 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
{
"name": "atlasify",
"version": "0.4.1",
"description": "CLI and core module for atlasify texture packer using maxrects-packer & Jimp",
"main": "lib/atlasify.js",
"types": "lib/types/atlasify.d.ts",
"bin": "bin/cli.js",
"ts:main": "src/atlasify.ts",
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"clean": "rimraf ./lib && rimraf ./dist && rimraf ./test/*.png",
"prepare": "patch-package",
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"doc": "cd ./website && npm install && npm run build",
"doc:clean": "rimraf ./website/build && rimraf ./website/docs/*",
"doc:publish": "gh-pages --dotfiles=true -m \"[ci skip] Updates\" -d website/build",
"test": "cd ./test && node ../bin/cli.js --group-folder -astr -p 2 -m 1024,1024 --extrude 1 --trim --search-dummy --debug ./atlas",
"version": "standard-version",
"commit": "npx git-cz"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/soimy/atlasify.git"
},
"keywords": [
"atlas",
"atlasify",
"sprite",
"spritesheet",
"bin",
"pack",
"packer",
"maxrect",
"rect"
],
"author": "YM Shen <[email protected]> (http://github.com/soimy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/soimy/atlasify/issues"
},
"homepage": "https://github.com/soimy/atlasify#readme",
"devDependencies": {
"@types/mustache": "^0.8.32",
"@types/node": "^12.12.14",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^2.2.0",
"patch-package": "^6.2.2",
"postinstall-prepare": "^1.0.1",
"rimraf": "^2.7.1",
"standard-version": "^9.3.2",
"ts-node": "^8.10.2",
"tslib": "^1.13.0",
"tslint": "^5.20.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/pixelmatch": "^5.0.0",
"commander": "^2.20.3",
"jimp": "^0.16.1",
"maxrects-packer": "^2.7.1",
"mustache": "^3.1.0",
"pixelmatch": "^5.1.0",
"resource-loader": "^4.0.0-rc4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}