forked from jadkins89/Recipe-Scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.22 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
48
49
50
51
{
"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.11",
"fs": "^0.0.1-security",
"jsonschema": "^1.4.0",
"node-fetch": "^2.6.1",
"parse-domain": "^2.3.2",
"path": "^0.12.7",
"puppeteer": "^9.0.0",
"tinyduration": "^3.2.2"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"it-each": "^0.4.0",
"mocha": "^6.2.1",
"nyc": "^14.1.1"
}
}