-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
66 lines (66 loc) · 1.66 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "google-translate-open-api",
"version": "1.3.7",
"description": "A free and unlimited API for Google Translate(contains single and multiple) 💵🚫",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"pub": "npm run build && npm run update",
"build": "tsc && cp src/token.js ./dist",
"update": "auto-vers -t",
"test": "nyc mocha test/*.ts",
"cover": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hua1995116/google-translate-open-api.git"
},
"keywords": [
"google",
"translate",
"multiple",
"language"
],
"author": "hua1995116 <qiufneghyf@gmail.com> (https://github.com/hua1995116)",
"license": "Apache License",
"bugs": {
"url": "https://github.com/hua1995116/google-translate-open-api/issues"
},
"homepage": "https://github.com/hua1995116/google-translate-open-api#readme",
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.4",
"auto-vers": "^1.0.3",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"get-port": "^5.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"proxy": "^0.2.4",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"@vitalets/google-translate-token": "^1.1.0",
"axios-https-proxy-fix": "^0.17.1"
}
}