forked from LuanRT/google-this
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.4 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
{
"name": "googlethis",
"version": "1.8.0",
"description": "A simple yet powerful module to retrieve organic search results and much more from Google.",
"main": "lib/index.js",
"author": "LuanRT <[email protected]> (https://github.com/LuanRT)",
"funding": "https://github.com/sponsors/LuanRT",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint ./",
"lint:fix": "eslint --fix ./",
"build:types": "npx tsc"
},
"engines": {
"node": ">=14"
},
"types": "./typings/index.d.ts",
"directories": {
"test": "./test",
"typings": "./typings",
"examples": "./examples",
"lib": "./lib"
},
"dependencies": {
"axios": "^0.21.1",
"cheerio": "1.0.0-rc.10",
"form-data": "^4.0.0",
"unraw": "^2.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuanRT/google-this.git"
},
"keywords": [
"search",
"google",
"google-this",
"google-search",
"google-scraper",
"google-image-search",
"reverse-image-search",
"search-results",
"web-scraping",
"image-search",
"image",
"scraper",
"serp",
"gis"
],
"bugs": {
"url": "https://github.com/LuanRT/google-this/issues"
},
"homepage": "https://github.com/LuanRT/google-this#readme",
"devDependencies": {
"@types/node": "^17.0.31",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"typescript": "^4.6.4"
}
}