-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.73 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
{
"name": "rehype-annotate",
"version": "1.0.0",
"description": "ReHype plugin to match W3C Web Annotations to source locations",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"lint": "tsc --module es2020 --checkJs --allowJs --noEmit --lib es2015 --moduleResolution node index.js && healthier && prettier --write --plugin-search-dir=. '**/*.{js,json,css,yml,svelte}'",
"pretest": "npm run lint",
"prepublishOnly": "npm run lint",
"test": "c8 tap --no-cov tests/index.js && c8 report --reporter=lcov",
"snapshots": "TAP_SNAPSHOT=1 npm run test"
},
"engines": {
"node": ">14.0.0"
},
"healthier": {
"ignore": [
"__sapper__",
"rollup.config.js"
]
},
"dependencies": {
"@types/node": "^16.0.1",
"aria-attributes": "^2.0.0",
"deepmerge": "^4.2.2",
"diff-match-patch": "^1.0.5",
"glob": "^7.1.7",
"hast-util-sanitize": "^4.0.0",
"hast-util-select": "^5.0.0",
"hast-util-to-string": "^1.0.4",
"hastscript": "^7.0.1",
"html-element-attributes": "^3.0.0",
"property-information": "^6.0.1",
"rehype-parse": "^7.0.1",
"rehype-raw": "^5.1.0",
"rehype-sanitize": "^4.0.0",
"rehype-stringify": "^8.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.1.0",
"string-pixel-width": "^1.10.0",
"svg-element-attributes": "^2.0.0",
"to-vfile": "^7.1.0",
"unified": "^9.2.1",
"unist-util-is": "^5.1.0",
"unist-util-visit": "^3.1.0",
"unist-util-visit-parents": "^4.1.1",
"universal-base64url": "^1.1.0",
"vfile-reporter": "^7.0.1"
},
"devDependencies": {
"c8": "^7.7.3",
"healthier": "^4.0.0",
"prettier": "^2.3.2",
"tap": "^15.0.9",
"typescript": "^4.3.5"
},
"private": true
}