-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.31 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
{
"name": "serp-extended",
"version": "1.0.4",
"description": "This module is an extention to 'serp' module. It adds an option to exclude whichever websites you want from your search results. It provides different options for scraping the google results (either the list of the referenced sites or the number of results)",
"publishConfig": { "registry": "https://npm.pkg.github.com/" },
"main": "index.js",
"scripts": {
"test": "mocha 'test/**/*.js' --timeout 20000",
"pretest": "rm -rf ./logs"
},
"repository": {
"type": "git",
"url": "git://github.com/utkarsh914/serp-extended.git"
},
"keywords": [
"google",
"search",
"scraper",
"google scraper",
"SERP",
"SEO",
"extended",
"scrape google results"
],
"author": "Utkarsh Tiwari",
"license": "MIT",
"bugs": {
"url": "https://github.com/utkarsh914/serp-extended/issues"
},
"homepage": "https://github.com/utkarsh914/serp-extended#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"request": "^2.88.2",
"request-promise-native": "^1.0.8"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.1.0",
"eslint-config-adidas-es8": "^1.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-promise": "^4.2.1",
"mocha": "^7.2.0",
"simple-proxies": "^1.0.3"
}
}