-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "translate-json",
"version": "2.2.0",
"description": "Tool to translate strings in a JSON document.",
"main": "./translate-json",
"scripts": {
"test": "jest",
"format": "prettier --print-width 80 --write --no-semi \"**/*.{js{,on},css}\"",
"lint": "eslint lib",
"precommit": "npm run lint",
"prepush": "npm test",
"submit-coverage": "cat ./coverage/lcov.info | coveralls"
},
"bin": {
"translate-json": "lib/index.js"
},
"engines": {
"node": ">=12.0.0"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/LukeChannings/translate-json.git"
},
"author": "Luke Channings",
"email": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/LukeChannings/translate-json/issues"
},
"homepage": "https://github.com/LukeChannings/translate-json",
"devDependencies": {
"eslint": "^7.4.0",
"jest": "^26.1.0",
"prettier": "^2.0.5"
},
"dependencies": {
"@iamtraction/google-translate": "^1.1.2",
"colors": "^1.1.2",
"html-entities": "^1.2.0",
"lodash.set": "^4.3.2",
"minimist": "^1.2.0",
"mstranslator": "^3.0.0",
"yandex.translate": "^1.0.0"
}
}