-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.67 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
{
"name": "website-scrap-engine",
"version": "0.8.4",
"description": "Configurable website scraper in typescript",
"main": "lib",
"types": "lib",
"type": "module",
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"clean": "node -e \"require('fs').rmSync('lib',{force:true,recursive:true})\"",
"tsc": "tsc",
"lint": "eslint --fix src test",
"test": "npm run lint && node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "npm run lint && npm run tsc && npm run copy",
"copy": "node copy-src.js",
"prepack": "npm run clean && npm run build",
"postshrinkwrap": "node package-lock-resolved.js"
},
"dependencies": {
"cheerio": "^1.1.2",
"css-url-parser": "^1.1.4",
"got": "^14.6.4",
"log4js": "^6.9.1",
"mkdirp": "^3.0.1",
"p-queue": "^8.1.1",
"srcset": "^5.0.2",
"urijs": "^1.19.11"
},
"devDependencies": {
"@jest/globals": "^30.1.1",
"@types/node": "^24.10.1",
"@types/urijs": "^1.19.26",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.39.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.4",
"typescript": "^5.9.3"
},
"files": [
".editorconfig",
"tsconfig.json",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/website-local/website-scrap-engine.git"
},
"keywords": [
"typescript",
"website",
"scraper",
"download"
],
"author": "myfreeer",
"license": "ISC",
"bugs": {
"url": "https://github.com/website-local/website-scrap-engine/issues"
},
"homepage": "https://github.com/website-local/website-scrap-engine#readme"
}