-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "page-scrapper",
"version": "1.0.1",
"description": "A simple node.js scrapper that pulls out all links and images of a given site.",
"keywords": [
"page-scrapper",
"node-scrapper",
"site-scrapper",
"link-scrapper",
"website-scrapper",
"web-scapper",
"scrapper"
],
"homepage": "https://github.com/rocktimsaikia/site-scrapper",
"bugs": {
"url": "https://github.com/rocktimsaikia/site-scrapper/issues"
},
"repository": "rocktimsaikia/site-scrapper",
"license": "MIT",
"author": {
"name": "Rocktim Saikia",
"email": "[email protected]",
"url": "https://rocktimsaikia.now.sh"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"lint": "eslint .",
"test": "jest .",
"test:ex": "node example/index.js",
"prepublishOnly": "npm run test"
},
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"is-absolute-url": "^3.0.3",
"is-url-superb": "^5.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"eslint": "^7.21.0",
"eslint-plugin-unicorn": "^28.0.2",
"jest": "^26.6.3",
"page-scrapper": "^1.0.1",
"size-limit": "^4.10.1"
},
"engines": {
"node": ">=10"
}
}