generated from Pegase745/ts-node-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
125 lines (125 loc) · 2.92 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@treatwell/wti",
"version": "2.1.1",
"description": "A WebTranslateIt command-line tool in Node.js",
"keywords": [
"wti",
"cli",
"webtranslateit",
"i18n",
"i18next",
"translations"
],
"homepage": "https://github.com/treatwell/wti#readme",
"bugs": {
"url": "https://github.com/treatwell/wti/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/treatwell/wti.git"
},
"license": "MIT",
"author": "Treatwell <opensource@treatwell.com>",
"contributors": [
"Michel Nemnom <1678801+Pegase745@users.noreply.github.com>"
],
"main": "dist/index.js",
"bin": {
"wti": "bin/wti"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"commit": "git-cz",
"lint": "eslint . --ext .ts",
"test": "jest",
"test:coverage": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"dot-prop": "^5.3.0"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.0",
"@oclif/plugin-not-found": "^1.2.4",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"cli-ux": "^5.5.0",
"git-root-dir": "^1.0.2",
"kleur": "^4.1.1",
"listr": "^0.14.3",
"make-error": "^1.3.6"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@oclif/dev-cli": "^1.22.2",
"@types/git-root-dir": "^1.0.0",
"@types/jest": "^26.0.14",
"@types/listr": "^0.14.2",
"@types/node": "8",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"commitizen": "^4.2.1",
"commitlint": "^11.0.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"import-sort-cli": "^6.0.0",
"import-sort-parser-typescript": "^6.0.0",
"jest": "^26.4.2",
"jest-junit": "^11.1.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"sort-package-json": "^1.46.0",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">= 20.0.0"
},
"preferGlobal": true,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"importSort": {
".ts": {
"parser": "typescript"
}
},
"oclif": {
"commands": "./dist/commands",
"bin": "wti",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 7
}
},
"volta": {
"node": "20.16.0",
"yarn": "1.22.22"
}
}