-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 864 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
{
"name": "hast-util-find-parent",
"version": "1.0.2",
"description": "utility to find a node's parent in a tree.",
"main": "index.js",
"author": "Chris Newton <me@chrisnewtn.com> (https://chrisnewtn.com)",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "npm run build -- --noEmit",
"prepack": "npm run build",
"test": "node --test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/chrisnewtn/hast-util-find-parent.git"
},
"bugs": {
"url": "https://github.com/chrisnewtn/hast-util-find-parent/issues"
},
"homepage": "https://github.com/chrisnewtn/hast-util-find-parent#readme",
"dependencies": {
"@types/hast": "^3.0.4"
},
"devDependencies": {
"@types/node": "^22.10.0",
"hastscript": "^9.0.0",
"typescript": "^5.7.2"
}
}