-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.5 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.5 KB
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
72
{
"name": "google-search-results-nodejs",
"version": "2.1.0",
"description": "Google Search Node JS API via SerpApi.com",
"scripts": {
"test": "mocha",
"coverage": "mocha -R test && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serpapi/google-search-results-nodejs.git"
},
"keywords": [
"google",
"search",
"scrape",
"api",
"query",
"json",
"html",
"image",
"automated",
"localization",
"serp",
"serpapi",
"image",
"news",
"seo",
"walmart",
"yahoo",
"yandex",
"scholar",
"bing",
"baidu",
"ebay",
"youtube",
"apple",
"store",
"app",
"homedepot",
"naver",
"duckduckgo"
],
"devDependencies": {
"braces": ">=2.3.1",
"expect": "^26.4.2",
"minimist": ">=0.2.1",
"mocha": "^8.4.0"
},
"author": "Victor Benarbia victor@serpapi.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/serpapi/google-search-results-nodejs/issues"
},
"homepage": "https://github.com/serpapi/google-search-results-nodejs#readme",
"main": "lib/main.js",
"files": [
"lib/BaiduSearch.js",
"lib/BingSearch.js",
"lib/EbaySearch.js",
"lib/GoogleSearch.js",
"lib/SerpApiSearch.js",
"lib/WalmartSearch.js",
"lib/YahooSearch.js",
"lib/YandexSearch.js",
"lib/YoutubeSearch.js",
"lib/DuckDuckGoSearch.js",
"lib/HomeDepotSearch.js",
"lib/AppleAppStoreSearch.js",
"lib/NaverSearch.js"
]
}