-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 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
{
"name": "@xcrap/core",
"version": "0.2.3",
"description": "Xcrap Core is the core package of the Xcrap framework for web scraping, offering tools such as HttpClient, BaseClient, Randomizer, Rotator, and support for proxies and pagination.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"!/**/__tests__"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"format": "prettier --write \"src/**/*.ts\" \"__tests__**/*.ts\""
},
"keywords": [
"xcrap",
"core",
"web scraping",
"node-html-parser",
"parsel",
"scrapy"
],
"author": "Marcuth",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"jmespath": "^0.16.0",
"prettier": "^3.8.1",
"prettier-plugin-sort-imports": "^1.8.11",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"https-proxy-agent": "^7.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xcrap-Cloud/core.git"
},
"bugs": {
"url": "https://github.com/Xcrap-Cloud/core/issues"
},
"homepage": "https://github.com/Xcrap-Cloud/core#readme",
"peerDependencies": {
"@xcrap/extractor": "^0.3.0"
}
}