forked from leolabs/json-autotranslate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.58 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-file-autotranslate-to-many",
"description": "Translate a JSON file (en.json) containing translations into multiple languages (ar.json, de.json, etc.).",
"version": "1.7.2",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"prepublishOnly": "tsc",
"semantic-release": "semantic-release"
},
"author": {
"name": "Leo Bernard",
"url": "https://leolabs.org"
},
"contributors": [
"Abdul Qabiz (https://abdulqabiz.com)"
],
"keywords": [
"google-translate",
"translate",
"i18next",
"react-i18next",
"i18n"
],
"repository": {
"type": "git",
"url": "https://github.com/abdul/json-file-autotranslate-to-many.git"
},
"homepage": "https://github.com/abdul/json-file-autotranslate-to-many",
"files": [
"lib/*"
],
"bin": "lib/index.js",
"dependencies": {
"@google-cloud/translate": "^2.1.3",
"@types/node": "^11.10.4",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"deep-object-diff": "^1.1.0",
"dotenv": "^6.2.0",
"flattenjs": "^1.0.4",
"inquirer": "^6.2.2",
"lodash": "^4.17.11",
"messageformat-parser": "^4.1.0",
"ncp": "^2.0.0",
"node-fetch": "^2.3.0",
"ts-node": "^8.0.2",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
},
"devDependencies": {
"@types/dotenv": "^6.1.0",
"@types/inquirer": "^0.0.44",
"@types/jest": "^24.0.10",
"@types/lodash": "^4.14.122",
"@types/ncp": "^2.0.3",
"@types/node-fetch": "^2.1.6",
"jest": "^24.3.1",
"semantic-release": "^17.0.7"
}
}