UNPKG

2.07 kBJSONView Raw
1{
2 "name": "unist-util-remove",
3 "version": "3.1.1",
4 "description": "unist utility to remove nodes from a tree",
5 "license": "MIT",
6 "keywords": [
7 "unist",
8 "unist-util",
9 "util",
10 "utility",
11 "ast",
12 "tree",
13 "node",
14 "cascade",
15 "delete",
16 "mutable",
17 "remove",
18 "squeeze",
19 "strip"
20 ],
21 "repository": "syntax-tree/unist-util-remove",
22 "bugs": "https://github.com/syntax-tree/unist-util-remove/issues",
23 "funding": {
24 "type": "opencollective",
25 "url": "https://opencollective.com/unified"
26 },
27 "author": "Eugene Sharygin <eush77@gmail.com>",
28 "contributors": [
29 "Eugene Sharygin <eush77@gmail.com>",
30 "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
31 ],
32 "sideEffects": false,
33 "type": "module",
34 "main": "index.js",
35 "types": "index.d.ts",
36 "files": [
37 "lib/",
38 "index.d.ts",
39 "index.js"
40 ],
41 "dependencies": {
42 "@types/unist": "^2.0.0",
43 "unist-util-is": "^5.0.0",
44 "unist-util-visit-parents": "^5.0.0"
45 },
46 "devDependencies": {
47 "@types/node": "^18.0.0",
48 "c8": "^7.0.0",
49 "prettier": "^2.0.0",
50 "remark-cli": "^11.0.0",
51 "remark-preset-wooorm": "^9.0.0",
52 "type-coverage": "^2.0.0",
53 "typescript": "^4.0.0",
54 "unist-builder": "^3.0.0",
55 "xo": "^0.53.0"
56 },
57 "scripts": {
58 "prepack": "npm run build && npm run format",
59 "build": "tsc --build --clean && tsc --build && type-coverage",
60 "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
61 "test-api": "node --conditions development test.js",
62 "test-coverage": "c8 --check-coverage --100 --reporter lcov npm run test-api",
63 "test": "npm run build && npm run format && npm run test-coverage"
64 },
65 "prettier": {
66 "tabWidth": 2,
67 "useTabs": false,
68 "singleQuote": true,
69 "bracketSpacing": false,
70 "semi": false,
71 "trailingComma": "none"
72 },
73 "xo": {
74 "prettier": true
75 },
76 "remarkConfig": {
77 "plugins": [
78 "preset-wooorm"
79 ]
80 },
81 "typeCoverage": {
82 "atLeast": 100,
83 "detail": true,
84 "strict": true
85 }
86}