-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.66 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.66 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": "@xcrap/extractor",
"version": "0.3.2",
"description": "Xcrap Extractor is a package of the Xcrap framework, it was developed to take care of the data extraction part of text files (currently supporting only HTML, JSON and Markdown) using declarative models.",
"keywords": [
"xcrap",
"extractor",
"parser",
"web scraping",
"node-html-parser",
"parsel",
"scrapy"
],
"homepage": "https://github.com/Xcrap-Cloud/parser#readme",
"bugs": {
"url": "https://github.com/Xcrap-Cloud/parser/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xcrap-Cloud/parser.git"
},
"license": "MIT",
"author": "Marcuth",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"!/**/__tests__"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\""
},
"devDependencies": {
"@types/he": "^1.2.3",
"@types/jest": "^29.5.14",
"@types/jmespath": "^0.15.2",
"@types/node": "^22.19.11",
"@types/xmldom": "^0.1.34",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^29.7.0",
"prettier": "^3.8.1",
"prettier-plugin-sort-imports": "^1.8.10",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"he": "^1.2.0",
"jmespath": "^0.16.0",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"node-html-parser": "^7.0.2",
"xmldom": "^0.6.0",
"xpath": "^0.0.34"
}
}