-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2 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
73
74
75
76
77
78
79
{
"name": "niddle",
"version": "0.2.6",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"napi": {
"name": "niddle",
"package": {
"name": "@niddle-rs/niddle"
},
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-linux-android",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"armv7-unknown-linux-musleabihf",
"x86_64-unknown-linux-musl",
"x86_64-unknown-freebsd",
"i686-pc-windows-msvc",
"armv7-linux-androideabi",
"universal-apple-darwin",
"riscv64gc-unknown-linux-gnu"
]
}
},
"keywords": [
"htmlparser",
"jquery",
"selector",
"scraper",
"parser",
"dom",
"html",
"rust",
"napi"
],
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.18.4",
"@taplo/cli": "^0.7.0",
"ava": "^6.0.1",
"cheerio": "^1.0.0-rc.12",
"htmlparser-benchmark": "^1.1.3",
"husky": "^8.0.0",
"js-beautify": "^1.15.1",
"typedoc": "^0.26.4",
"typedoc-plugin-markdown": "^4.2.1",
"typescript": "^5.5.3"
},
"ava": {
"timeout": "3m"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release --cargo-name niddle_napi",
"build:debug": "napi build --platform --cargo-name niddle_napi",
"prepublishOnly": "yarn patchdts && yarn docs && napi prepublish -t npm",
"universal": "napi universal",
"version": "napi version",
"test": "ava",
"patchdts": "cat ./patch.d.ts >> ./index.d.ts",
"benchmark": "node ./benchmark/benchmark.mjs",
"prepare": "husky install",
"docs": "npx typedoc && mv ./docs/README.md ./README.md"
},
"repository": "https://github.com/umijs/niddle",
"packageManager": "[email protected]",
"description": "A super fast html parser and manipulator written in rust."
}