-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.11 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
{
"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"
}
}