-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.8 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@azerion/h5-texture-unpacker",
"author": "Azerion",
"version": "0.1.1",
"description": "Simple CLI tool that allows you to unpack your existing Texture atlasses provided that you have the JSON file available",
"contributors": [
{
"name": "Ale Bles",
"email": "a.bles@azerion.com"
}
],
"main": "dist/h5-texture-unpacker.js",
"bin": {
"unpack": "dist/h5-texture-unpacker.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.azerdev.com:fabrique/tools/h5-texture-unpacker.git"
},
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.js",
"typedoc": "typedoc --out docs --theme minimal ./src",
"start": "rollup -c rollup.config.js -w",
"test:prod": "npm run lint && npm run test -- --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"precommit": "lint-staged"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"config": {
"name": "h5-texture-unpacker"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^7.6.0",
"@types/node": "^10.17.60",
"@types/sharp": "^0.23.1",
"@types/xml2js": "^0.4.9",
"@types/xmldom": "^0.1.31",
"@types/yargs": "^13.0.12",
"colors": "^1.4.0",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cross-env": "^5.2.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.0.1",
"lint-staged": "^11.1.2",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.19.1",
"prompt": "^1.2.0",
"replace-in-file": "^3.4.4",
"rimraf": "^2.7.1",
"rollup": "^2.57.0",
"rollup-plugin-add-shebang": "^0.3.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-preserve-shebangs": "^0.1.2",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.30.0",
"shelljs": "^0.8.3",
"typedoc": "^0.22.4",
"typescript": "^4.4.3"
},
"dependencies": {
"@xmldom/xmldom": "^0.7.5",
"sharp": "^0.27.2",
"winston": "^3.3.3",
"xpath": "0.0.32",
"yargs": "^16.2.0"
}
}