-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.61 KB
/
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
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
{
"name": "httpquery",
"version": "0.10.0",
"author": "Brett Zamir",
"contributors": [],
"description": "HTTP query protocol with proof-of-concept implementations obtaining subsets of remote HTML data via XPath or CSS Selectors",
"main": "./Node/index.js",
"type": "module",
"bin": {
"httpquery": "./Node/bin/index.js"
},
"exports": {
".": "./Node/index.js"
},
"scripts": {
"prepublishOnly": "pnpm i",
"build-cli": "clp -c Node/bin/optionDefinitions.js cli.svg",
"start": "node Node/bin/index.js --path=Node",
"eslint": "eslint .",
"lint": "npm run eslint --",
"mocha": "mocha --parallel",
"test": "c8 --all npm run mocha"
},
"c8": {
"reporter": [
"text"
],
"exclude": [
".ncurc.cjs",
"eslint.config.js",
"FFAddon",
"PHP",
"test"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/brettz9/httpquery.git"
},
"keywords": [
"HTTP",
"query",
"XPath",
"CSS",
"selectors",
"CSSSelectors"
],
"license": "MIT",
"dependencies": {
"cheerio": "1.0.0-rc.12",
"command-line-basics": "^2.0.1",
"jsdom": "^25.0.1",
"jsonata": "^2.0.5",
"xpath": "^0.0.34"
},
"engines": {
"node": ">=18.0.0"
},
"bugs": {
"url": "https://github.com/brettz9/httpquery/issues"
},
"homepage": "https://github.com/brettz9/httpquery#readme",
"devDependencies": {
"c8": "^10.1.2",
"chai": "^5.1.1",
"command-line-publish": "^1.1.0",
"eslint": "^9.11.1",
"eslint-config-ash-nazg": "36.19.0",
"mocha": "^10.7.3",
"node-fetch": "^3.3.2"
}
}