-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1009 Bytes
/
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
{
"name": "yolo-scraper",
"version": "1.0.1",
"description": "A simple way to structure your web scraper.",
"main": "lib/index.js",
"keywords": [
"scraping",
"scraper",
"html",
"extract",
"structure",
"simple",
"validation",
"json",
"schema"
],
"author": "Simon Thiboutôt <[email protected]> (http://simonthiboutot.com)",
"license": "MIT",
"dependencies": {
"ajv": "^6.12.6",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.3"
},
"devDependencies": {
"jasmine": "^3.6.2",
"nock": "^13.0.4",
"standard": "^15.0.0"
},
"directories": {
"example": "examples"
},
"scripts": {
"test": "standard && jasmine",
"lint": "standard",
"lint-fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/masterT/yolo-scraper.git"
},
"bugs": {
"url": "https://github.com/masterT/yolo-scraper/issues"
},
"homepage": "https://github.com/masterT/yolo-scraper#readme"
}