forked from jasonruesch/xlifftranslate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1023 Bytes
/
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
{
"name": "xlifftranslate",
"description": "Translate xliff files using the Google Cloud Translation API",
"version": "0.0.6",
"author": {
"name": "Jason Ruesch",
"email": "jason.ruesch@me.com"
},
"repository": {
"type": "git",
"url": "git://github.com/JasonRuesch/xlifftranslate.git"
},
"bug": {
"url": "https://github.com/JasonRuesch/xlifftranslate/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jasonruesch/xlifftranslate/blob/master/LICENSE"
}
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"xlifftranslate": "./bin/xlifftranslate.js"
},
"preferGlobal": true,
"keywords": [
"command line",
"language",
"xliff",
"translate",
"Google Translate",
"Google Cloud"
],
"dependencies": {
"@google-cloud/translate": "^0.8.1",
"async": "^2.4.0",
"cheerio": "^1.0.0-rc.2",
"liftoff": "^2.3.0",
"minimist": "^1.2.0"
}
}