-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 935 Bytes
/
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
{
"name": "nula-extractor",
"version": "1.0.1",
"description": "a extensible, powerful and easy-to-use data extractor for spider.",
"author": "LiesAuer",
"license": "MIT",
"keywords": [
"spider",
"extractor",
"regex-extractor",
"json-extractor",
"css-extractor",
"jmes-extractor",
"xpath-extractor"
],
"main": "./dist/lib/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git://github.com/nulastudio/NULAExtractor"
},
"dependencies": {
"@gorillastack/jmespath": "^1.3.0",
"cheerio": "^1.0.0-rc.12",
"jsdom": "^21.1.0",
"jsonpath-plus": "^7.2.0",
"xpath-ts": "^1.3.13"
},
"devDependencies": {
"@types/cheerio": "^0.22.31",
"@types/jsdom": "^20.0.1",
"@types/node": "^18.11.18",
"ts-node": "^10.9.1",
"typescript": "4.9.5"
}
}