se-scraper/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2018-12-24 14:25:02 +01:00
{
"name": "se-scraper",
2019-11-08 16:21:16 +01:00
"version": "1.5.7",
"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",
"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": {
"cheerio": "^1.0.0-rc.3",
"debug": "^4.1.1",
"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",
"puppeteer-cluster": "^0.18.0",
"puppeteer-extra": "^2.1.3",
"puppeteer-extra-plugin-stealth": "^2.2.2",
"user-agents": "^1.0.378",
"winston": "^3.2.1"
},
"devDependencies": {
"bluebird": "^3.7.2",
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"express": "^4.17.1",
"http-mitm-proxy": "^0.8.2",
"key-cert": "^1.0.1",
"mocha": "^6.1.4"
2018-12-24 14:25:02 +01:00
}
}