-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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": "googletrans",
"version": "1.0.21",
"description": "Free and Unlimited Google translate API for node.js",
"files": [
"lib/**/*"
],
"main": "lib/googletrans.js",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc && node_modules/.bin/webpack --mode production",
"commit": "npx git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DarinRowe/googletrans.git"
},
"keywords": [
"google",
"language",
"i18n",
"localization",
"googletranslate",
"translation",
"translator",
"translate",
"node",
"google translator",
"googlet ranslate"
],
"author": "Darin Lo",
"license": "MIT",
"bugs": {
"url": "https://github.com/DarinRowe/googletrans/issues"
},
"homepage": "https://github.com/DarinRowe/googletrans#readme",
"dependencies": {
"axios": ">=1.6.4",
"qs": "^6.10.2"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^16.4.9",
"@types/qs": "^6.9.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^4.3.5",
"webpack": "^5.6.0",
"webpack-cli": "^4.7.2"
}
}