-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.63 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
{
"name": "typed-locale-keys",
"version": "2.1.26",
"description": "Generates typed object to provide translations",
"scripts": {
"clean-generated": "rimraf tests/__generated__ tests/**/__generated__ tests/cli-configs-sandbox/*/dist",
"generate-for-type-tests": "ts-node tests/pregenerate.ts",
"generate-snapshot": "yarn test -- --updateSnapshot",
"lint": "eslint '**/*.{ts,tsx}'",
"lint:fix": "eslint '**/*.{ts,tsx}' --fix",
"typecheck": "tsc --noEmit",
"pretest": "yarn run clean-generated && yarn run generate-for-type-tests && yarn run lint && yarn run typecheck && yarn run build",
"test": "jest -i",
"build": "tsc -p tsconfig.build.json",
"generate-readme": "ts-node scripts/generateReadme.ts"
},
"dependencies": {
"@types/flat": "^5.0.2",
"child-process-promise": "^2.2.1",
"cosmiconfig": "^7.0.1",
"flat": "^5.0.2",
"format-message-parse": "^6.2.4",
"handlebars": "^4.7.7",
"ts-essentials": "^8.1.0",
"ts-morph": "^12.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"yargs": "^17.1.1"
},
"files": [
"dist"
],
"bin": {
"tlk": "dist/bin.js"
},
"devDependencies": {
"@testing-library/react": "^12.1.0",
"@types/child-process-promise": "^2.2.2",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-prettier": "^4.0.0",
"fast-json-stable-stringify": "^2.1.0",
"i18next": "^20.6.1",
"jest": "^27.1.1",
"lint-staged": "^11.2.0",
"prettier": "2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.6.1",
"ts-jest": "^27.0.5"
},
"keywords": [
"i18n",
"JSON",
"keys",
"locale",
"typescript"
],
"private": false,
"publishConfig": {
"versionBumpStrategy": "patch",
"registry": "https://registry.npmjs.org/"
},
"author": {
"name": "Guy Wargzaer",
"email": "[email protected]"
},
"contributors": [
{
"name": "Tit Kovalenko",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/wix-incubator/typed-locale-keys.git"
},
"homepage": "https://github.com/wix-incubator/typed-locale-keys#readme",
"bugs": {
"url": "https://github.com/wix-incubator/typed-locale-keys/issues"
},
"license": "MIT"
}