2018-12-24 14:25:02 +01:00
|
|
|
{
|
|
|
|
"name": "se-scraper",
|
2019-11-08 16:21:16 +01:00
|
|
|
"version": "1.5.7",
|
2019-09-13 16:15:33 +02:00
|
|
|
"description": "A module using puppeteer to scrape several search engines such as Google, Bing and Duckduckgo",
|
2019-01-27 15:54:56 +01:00
|
|
|
"homepage": "https://scrapeulous.com/",
|
2018-12-24 14:25:02 +01:00
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2020-01-07 09:53:59 +01:00
|
|
|
"test": "mocha test test/modules"
|
2018-12-24 14:25:02 +01:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"scraping",
|
|
|
|
"search-engines",
|
|
|
|
"google",
|
2019-02-27 20:58:13 +01:00
|
|
|
"bing",
|
2018-12-24 14:25:02 +01:00
|
|
|
"web-scraping"
|
|
|
|
],
|
|
|
|
"author": "Nikolai Tschacher <hire@incolumitas.com> (https://incolumitas.com/)",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/NikolaiT/se-scraper"
|
|
|
|
},
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2019-09-13 16:15:33 +02:00
|
|
|
"cheerio": "^1.0.0-rc.3",
|
2019-03-06 00:08:25 +01:00
|
|
|
"debug": "^4.1.1",
|
2019-01-29 22:48:08 +01:00
|
|
|
"got": "^9.6.0",
|
2019-07-11 16:54:32 +02:00
|
|
|
"lodash": "^4.17.14",
|
2019-11-08 16:21:16 +01:00
|
|
|
"puppeteer": "^2.0.0",
|
2019-12-20 19:44:59 +01:00
|
|
|
"puppeteer-cluster": "^0.18.0",
|
2019-07-18 20:19:15 +02:00
|
|
|
"puppeteer-extra": "^2.1.3",
|
|
|
|
"puppeteer-extra-plugin-stealth": "^2.2.2",
|
2019-12-15 17:56:22 +01:00
|
|
|
"user-agents": "^1.0.378",
|
|
|
|
"winston": "^3.2.1"
|
2019-06-26 12:03:42 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-01-03 19:21:34 +01:00
|
|
|
"bluebird": "^3.7.2",
|
2019-06-26 12:03:42 +02:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"chai-string": "^1.5.0",
|
2020-01-03 19:21:34 +01:00
|
|
|
"express": "^4.17.1",
|
2020-01-08 14:40:28 +01:00
|
|
|
"http-mitm-proxy": "^0.8.2",
|
2020-01-03 19:21:34 +01:00
|
|
|
"key-cert": "^1.0.1",
|
2020-01-10 09:35:24 +01:00
|
|
|
"mocha": "^6.1.4",
|
|
|
|
"ua-parser-js": "^0.7.21"
|
2018-12-24 14:25:02 +01:00
|
|
|
}
|
|
|
|
}
|