UNPKG

recipe-scraper

Version:

A JS package for scraping recipes from the web.

48 lines (47 loc) 1.14 kB
{ "name": "recipe-scraper", "version": "2.1.1", "description": "A JS package for scraping recipes from the web.", "author": "Justin Adkins <jadkins1019@gmail.com>", "license": "MIT", "keywords": [ "recipes", "scraper", "web-scraper", "recipe" ], "main": "scrapers/index.js", "scripts": { "test": "mocha --timeout 15000", "start": "node scrapers/index.js", "coverage": "nyc npm test", "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" }, "files": [ "helpers/", "scrapers/", "LICENSE", "README.md" ], "repository": { "type": "git", "url": "git+https://github.com/jadkins89/Recipe-Scraper.git" }, "bugs": { "url": "https://github.com/jadkins89/Recipe-Scraper/issues" }, "homepage": "https://github.com/jadkins89/Recipe-Scraper#readme", "dependencies": { "cheerio": "^1.0.0-rc.3", "jsonschema": "^1.4.0", "node-fetch": "^2.6.1", "parse-domain": "^2.3.2", "puppeteer": "^9.0.0" }, "devDependencies": { "chai": "^4.2.0", "coveralls": "^3.0.6", "mocha": "^6.2.1", "nyc": "^14.1.1" } }