forked from vitalets/google-translate-api
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.24 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
50
51
52
{
"name": "@plainheart/google-translate-api",
"version": "1.2.0",
"description": "A free and unlimited API for Google Translate",
"main": "index.js",
"scripts": {
"test": "nyc ava",
"release": "npm test && npm version $VER && npm publish --access public",
"postrelease": "git push --follow-tags --no-verify",
"release-patch": "VER=patch npm run release",
"release-minor": "VER=minor npm run release"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "https://github.com/plainheart/google-translate-api.git"
},
"keywords": [
"translate",
"translator",
"google",
"translate",
"api",
"free",
"language"
],
"author": {
"name": "Matheus Fernandes",
"email": "[email protected]",
"url": "https://github.com/matheuss"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/plainheart/google-translate-api/issues"
},
"homepage": "https://github.com/plainheart/google-translate-api#readme",
"dependencies": {
"configstore": "^5.0.1",
"got": "^11.8.5",
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"ava": "^3.15.0",
"hpagent": "^0.1.1",
"husky": "^3.0.4",
"nyc": "^15.1.0"
}
}