-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "crawlyx",
"version": "2.2.2",
"description": "Crawlyx is an open-source command-line interface (CLI) based web crawler built using Node.js. It is designed to crawl websites and extract useful information like links, images, and text. It is lightweight, fast, and easy to use.",
"main": "index.js",
"bin": {
"crawlyx": "./bin/bash"
},
"author": "theritikchoure",
"license": "MIT",
"scripts": {
"start": "node main.js",
"test": "jest"
},
"keywords": [
"web crawler",
"web scraping",
"data extraction",
"SEO analysis",
"command-line tool",
"Node.js",
"HTML reporting",
"cross-platform",
"configurable options",
"plugin system",
"open-source",
"crawling",
"crawler",
"scraper",
"spider"
],
"devDependencies": {
"jest": "^29.5.0"
},
"dependencies": {
"jsdom": "^21.1.1",
"node-fetch": "^2.6.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theritikchoure/crawlyx.git"
},
"bugs": {
"url": "https://github.com/theritikchoure/crawlyx/issues"
},
"homepage": "https://theritikchoure.github.io/crawlyx/docs/"
}