-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "i18n-auto-cli",
"version": "0.0.10",
"description": "Translate simplified Chinese to traditional Chinese (HK TW)",
"main": "src/index.js",
"scripts": {
"test:dir": "node ./bin/i18n-auto -t ./target -d ./dist -l zh-TW",
"test:file": "node ./bin/i18n-auto -t ./target/zh-cn.json -d ./dist/zh-tw.json -l zh-TW",
"test:sync": "node ./bin/i18n-auto -s -t ./target/zh_cn.js -d ./dist/en-US.js",
"test:sync:dir": "node ./bin/i18n-auto -s -t ./target/ -d ./dist/ -i index.ts"
},
"bin": {
"i18n-auto": "./bin/i18n-auto.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deboyblog/i18n-auto-cli.git"
},
"keywords": [
"auto-tanslate-tool"
],
"author": "Deboy",
"license": "MIT",
"bugs": {
"url": "https://github.com/deboyblog/i18n-auto-cli/issues"
},
"homepage": "https://github.com/deboyblog/i18n-auto-cli#readme",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"qs": "^6.6.0",
"require-from-string": "^2.0.2",
"unescape-js": "^1.1.4"
}
}