-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "i18n-typedef",
"version": "1.2.4",
"description": "Convert I18n translation files to TypeScript definitions",
"author": "Agendrix",
"repository": {
"type": "git",
"url": "git+https://github.com/agendrix/i18n-typedef.git"
},
"keywords": [
"I18n",
"yaml",
"TypeScript",
"CLI"
],
"bin": {
"i18n-typedef": "bin/i18n-typedef"
},
"license": "Apache-2.0",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"chokidar": "^3.4.3",
"colors": "^1.4.0",
"commander": "^6.2.0",
"globby": "11.0.1",
"js-yaml": "^3.14.0",
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.14.7",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"ts-jest": "^26.4.4",
"tslib": "^2.0.3",
"tsutils": "^3.17.1",
"typescript": "^4.0.5"
},
"engines": {
"node": ">=18"
}
}