-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "google-translate-xlf",
"version": "0.2.3",
"description": "A command-line utility to automatically translate .xlf translation files using Google Translate",
"main": "./src/index.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha",
"test:watch": "node ./node_modules/mocha/bin/mocha --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nfriend/google-translate-xlf.git"
},
"keywords": [
"translate",
"google",
"xlf",
"angular",
"i18n",
"multilingual",
"google-translate",
"angular2",
"ng"
],
"author": "Nathan Friend",
"license": "MIT",
"bugs": {
"url": "https://github.com/nfriend/google-translate-xlf/issues"
},
"homepage": "https://github.com/nfriend/google-translate-xlf#readme",
"preferGlobal": true,
"bin": {
"translate-xlf": "./src/index.js"
},
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.4.1",
"google-translate-api": "^2.3.0",
"lodash": "^4.17.10",
"moment": "^2.22.1",
"xml2js": "^0.4.19",
"yargs": "^11.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.1.1",
"proxyquire": "^2.0.1"
}
}