-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.91 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "openscrape",
"version": "1.0.8",
"description": "Open-source web scraping library with headless browser support, pagination, and data extraction",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"openscrape": "dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "ts-node src/cli.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"start": "node dist/cli.js serve",
"prepublishOnly": "npm run build"
},
"keywords": [
"web-scraping",
"crawler",
"headless-browser",
"data-extraction",
"pagination",
"markdown",
"json"
],
"author": "RantsRoamer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RantsRoamer/OpenScrape.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"commander": "^11.1.0",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"p-limit": "^5.0.0",
"p-queue": "^8.0.1",
"playwright": "^1.40.1",
"turndown": "^7.1.3",
"turndown-plugin-gfm": "^1.0.2",
"winston": "^3.11.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.5",
"@types/supertest": "^6.0.2",
"@types/turndown": "^5.0.5",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}