-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.12 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
{
"name": "tgx-converter",
"version": "0.1.2",
"description": "A simple TGX to PNG, JPG, BMP converter.",
"author": "Attila Olah",
"license": "MIT",
"main": "lib.js",
"bin": {
"tgxc": "bin/tgxc"
},
"repository": {
"type": "git",
"url": "https://github.com/NoNameProvided/tgx-converter.git"
},
"bugs": {
"url": "https://github.com/NoNameProvided/tgx-converter/issues"
},
"keywords": [
"tgx",
"converter",
"stronghold",
"crusaders"
],
"scripts": {
"build": "npm run build:clean && npm run build:tsc:prod && npm run build:copy",
"build:clean": "rimraf ./build",
"build:tsc:incremental": "tsc --project ./tsconfig.json",
"build:tsc:prod": "tsc --project ./tsconfig.prod.json",
"build:copy": "cpy src/bin build/bin && cpy package.json build && cpy LICENSE build cpy README.md build",
"start:dev": "npm run build && tsc-watch",
"prettier:format": "prettier --write ./src/**/*.ts ./src/*.ts",
"prettier:check": "prettier --check ./src/**/*.ts ./src/*.ts",
"lint:fix": "eslint --max-warnings 0 src/**/*.ts --fix",
"lint:check": "eslint --max-warnings 0 src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.md": [
"prettier --parser markdown --write",
"git add"
],
"*.ts": [
"prettier --parser typescript --write",
"git add"
]
},
"dependencies": {
"arg": "^5.0.0",
"chalk": "^4.1.1",
"jimp": "0.16.1"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@types/node": "14.14.37",
"@typescript-eslint/eslint-plugin": "4.20.0",
"@typescript-eslint/parser": "4.21.0",
"cpy-cli": "3.1.1",
"eslint": "7.23.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "3.3.1",
"husky": "^4.3.8",
"jest": "26.6.3",
"lint-staged": "11.0.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-jest": "26.5.4",
"tsc-watch": "4.2.9",
"tslint": "6.1.3",
"typescript": "4.2.4"
}
}