forked from AidanWelch/google-translate-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.89 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
67
68
69
70
71
{
"name": "miss-helper",
"version": "0.0.5",
"description": "A free and unlimited API for Google Translate",
"main": "./src/index.js",
"bin": {
"miss-helper": "./src/commander.js"
},
"scripts": {
"miss-helper": "ts-node -O '{\"module\": \"commonjs\"}' ./src/miss-helper.ts",
"test": "nyc ava",
"start": "node ./src/gen-locales.js",
"lint": "xo",
"build": "tsc",
"coverage": "nyc report --reporter=text-lcov | coveralls && nyc report --reporter=text-lcov > coverage.lcov && codecov",
"release": "np --yolo --no-release-draft"
},
"repository": {
"type": "git",
"url": "https://github.com/lyan-ap/google-translate-api-next.git"
},
"keywords": [
"translate",
"translator",
"google",
"translate",
"api",
"free",
"language",
"crossplatform",
"axios",
"fetch",
"react",
"extension",
"web"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lyan-ap/google-translate-api-next/issues"
},
"homepage": "https://github.com/lyan-ap/google-translate-api-next#readme",
"devDependencies": {
"ava": "^5.1.0",
"codecov": "^3.8.1",
"commander": "^9.4.1",
"coveralls": "^3.1.1",
"husky": "^3.0.4",
"np": "^3.0.4",
"nyc": "^15.1.0",
"xo": "^0.53.0"
},
"xo": {
"space": 4,
"parserOptions": {
"ecmaScript": 8
},
"rules": {
"no-undef": "warn",
"no-fallthrough": "off",
"dot-notation": "off",
"no-loop-func": "warn",
"no-dupe-keys": "warn"
}
},
"dependencies": {
"axios": "^0.27.2",
"google-translate-api-x": "^10.3.4",
"inquirer": "^9.1.4",
"ts-node": "^10.9.1"
}
}