forked from jadkins89/Recipe-Scraper
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 KB
/
package.json
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
52
53
54
55
56
{
"name": "recipe-scraper",
"version": "2.1.2",
"type": "module",
"description": "A JS package for scraping recipes from the web.",
"author": "Shani Almog",
"license": "MIT",
"keywords": [
"recipes",
"scraper",
"web-scraper",
"recipe"
],
"main": "src/scrapers/index.js",
"scripts": {
"lint": "npx eslint ./src",
"test": "mocha ./src/test --timeout 30000",
"start": "node ./src/scrapers/index.js",
"coverage": "nyc npm test",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"standard": {
"env": [
"mocha"
]
},
"files": [
"src/helpers/",
"src/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": "^7.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"eslint": "^8.40.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^10.2.0",
"nyc": "^14.1.1"
}
}