-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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
{
"name": "lingva-scraper",
"version": "1.1.0",
"description": "Google Translate scraper for Lingva Translate",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"author": "thedaviddelta",
"repository": {
"type": "git",
"url": "git+https://github.com/thedaviddelta/lingva-scraper.git"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/thedaviddelta/lingva-scraper/issues"
},
"homepage": "https://github.com/thedaviddelta/lingva-scraper#readme",
"private": false,
"keywords": [
"lingva",
"google",
"translate",
"translator",
"api",
"scraping",
"scraper",
"extractor"
],
"files": [
"dist/**/*",
"img/logo.svg"
],
"dependencies": {
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.11",
"user-agents": "^1.0.1033"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/user-agents": "^1.0.2",
"jest": "^28.1.0",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
}
}