-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
63 lines (63 loc) · 1.52 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
{
"name": "json-autotranslate",
"description": "Translate a folder of JSON files containing translations into multiple languages.",
"version": "1.14.4",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"test": "jest",
"build": "tsc",
"prepublishOnly": "tsc"
},
"author": {
"name": "Leo Bernard",
"url": "https://leolabs.org"
},
"keywords": [
"google-translate",
"translate",
"i18next",
"react-i18next",
"i18n"
],
"repository": {
"type": "git",
"url": "https://github.com/leolabs/json-autotranslate.git"
},
"homepage": "https://github.com/leolabs/json-autotranslate",
"files": [
"lib/*"
],
"bin": "lib/index.js",
"dependencies": {
"@aws-sdk/client-translate": "^3.52.0",
"@google-cloud/translate": "^8.3.0",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"deep-object-diff": "^1.1.0",
"dotenv": "^8.2.0",
"flat": "^5.0.2",
"html-entities": "^2.3.2",
"inquirer": "^7.3.3",
"lodash": "^4.17.20",
"messageformat-parser": "^4.1.3",
"ncp": "^2.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/flat": "^5.0.2",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.161",
"@types/ncp": "^2.0.4",
"@types/node": "^14.11.2",
"@types/node-fetch": "^2.5.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
}
}