|
1 | 1 | {
|
2 | 2 | "name": "unist-util-find",
|
3 | 3 | "version": "1.0.4",
|
4 |
| - "description": "Unist node finder utility. Useful for working with remark, rehype and retext.", |
5 |
| - "repository": "https://github.com/blahah/unist-util-find", |
| 4 | + "description": "unist utility to find a node", |
| 5 | + "license": "MIT", |
| 6 | + "keywords": [ |
| 7 | + "find", |
| 8 | + "hast", |
| 9 | + "mdast", |
| 10 | + "nlcst", |
| 11 | + "node", |
| 12 | + "rehype", |
| 13 | + "remark", |
| 14 | + "retext", |
| 15 | + "search", |
| 16 | + "unist", |
| 17 | + "unist-util", |
| 18 | + "util", |
| 19 | + "utility" |
| 20 | + ], |
| 21 | + "repository": "syntax-tree/unist-util-find", |
| 22 | + "bugs": "https://github.com/syntax-tree/unist-util-find/issues", |
| 23 | + "funding": { |
| 24 | + "type": "opencollective", |
| 25 | + "url": "https://opencollective.com/unified" |
| 26 | + }, |
| 27 | + "author": "Richard Smith-Unna <[email protected]> @blahah", |
| 28 | + "contributors": [ |
| 29 | + "Richard Smith-Unna <[email protected]> @blahah", |
| 30 | + "Titus Wormer <[email protected]> (https://wooorm.com)" |
| 31 | + ], |
6 | 32 | "sideEffects": false,
|
7 | 33 | "type": "module",
|
8 | 34 | "main": "index.js",
|
|
11 | 37 | "index.d.ts",
|
12 | 38 | "index.js"
|
13 | 39 | ],
|
14 |
| - "scripts": { |
15 |
| - "prepack": "npm run build && npm run format", |
16 |
| - "build": "tsc --build --clean && tsc --build && type-coverage", |
17 |
| - "format": "prettier . -w --loglevel warn && xo --fix", |
18 |
| - "test-api": "node --conditions development test.js", |
19 |
| - "test-coverage": "c8 --100 --reporter lcov npm run test-api", |
20 |
| - "test": "npm run build && npm run format && npm run test-coverage" |
21 |
| - }, |
22 |
| - "keywords": [ |
23 |
| - "unist", |
24 |
| - "remark", |
25 |
| - "retext", |
26 |
| - "rehype", |
27 |
| - "hast", |
28 |
| - "mdast", |
29 |
| - "nlcst", |
30 |
| - "find", |
31 |
| - "search" |
32 |
| - ], |
33 |
| - "author": "Richard Smith-Unna <[email protected]> @blahah", |
34 |
| - "license": "MIT", |
35 | 40 | "dependencies": {
|
36 | 41 | "lodash.iteratee": "^4.0.0",
|
37 | 42 | "unist-util-visit": "^4.0.0"
|
|
48 | 53 | "typescript": "^5.0.0",
|
49 | 54 | "xo": "^0.54.0"
|
50 | 55 | },
|
| 56 | + "scripts": { |
| 57 | + "prepack": "npm run build && npm run format", |
| 58 | + "build": "tsc --build --clean && tsc --build && type-coverage", |
| 59 | + "format": "prettier . -w --loglevel warn && xo --fix", |
| 60 | + "test-api": "node --conditions development test.js", |
| 61 | + "test-coverage": "c8 --100 --reporter lcov npm run test-api", |
| 62 | + "test": "npm run build && npm run format && npm run test-coverage" |
| 63 | + }, |
51 | 64 | "prettier": {
|
52 | 65 | "bracketSpacing": false,
|
53 | 66 | "semi": false,
|
|
0 commit comments