-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
41 lines (41 loc) · 992 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
{
"name": "google-translate-cli",
"version": "1.1.1",
"description": "Google Translate via CLI.",
"author": "Jesús Alberto Polo García <[email protected]>",
"contributors": [
{
"name" : "Brian Prodoehl",
"url" : "https://github.com/bprodoehl"
}, {
"name" : "laggingreflex",
"url" : "https://github.com/laggingreflex"
}, {
"name" : "michaelsavich",
"url" : "https://github.com/michaelsavich"
}
],
"homepage" : "https://github.com/jesusalber1/google-translate-cli",
"main": "lib/translate.js",
"preferGlobal": true,
"bin": {
"translate": "lib/translate.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jesusalber1/google-translate-cli.git"
},
"keywords": [
"google",
"translate",
"cli"
],
"dependencies": {
"commander": "^2.9.0",
"request": "^2.72.0"
}
}