|
1 | 1 | { |
2 | | - "name": "mdast-util-gfm-footnote", |
3 | | - "version": "2.0.0", |
4 | | - "description": "mdast extension to parse and serialize GFM footnotes", |
5 | | - "license": "MIT", |
6 | | - "keywords": [ |
7 | | - "unist", |
8 | | - "mdast", |
9 | | - "mdast-util", |
10 | | - "util", |
11 | | - "utility", |
12 | | - "markdown", |
13 | | - "markup", |
14 | | - "gfm", |
15 | | - "footnote", |
16 | | - "note" |
17 | | - ], |
18 | | - "repository": "syntax-tree/mdast-util-gfm-footnote", |
19 | | - "bugs": "https://github.com/syntax-tree/mdast-util-gfm-footnote/issues", |
20 | | - "funding": { |
21 | | - "type": "opencollective", |
22 | | - "url": "https://opencollective.com/unified" |
23 | | - }, |
24 | 2 | "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)", |
| 3 | + "bugs": "https://github.com/syntax-tree/mdast-util-gfm-footnote/issues", |
25 | 4 | "contributors": [ |
26 | 5 | "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)" |
27 | 6 | ], |
28 | | - "sideEffects": false, |
29 | | - "type": "module", |
30 | | - "exports": "./index.js", |
31 | | - "files": [ |
32 | | - "lib/", |
33 | | - "index.d.ts", |
34 | | - "index.js" |
35 | | - ], |
36 | 7 | "dependencies": { |
37 | 8 | "@types/mdast": "^4.0.0", |
38 | 9 | "devlop": "^1.1.0", |
39 | 10 | "mdast-util-from-markdown": "^2.0.0", |
40 | 11 | "mdast-util-to-markdown": "^2.0.0", |
41 | 12 | "micromark-util-normalize-identifier": "^2.0.0" |
42 | 13 | }, |
| 14 | + "description": "mdast extension to parse and serialize GFM footnotes", |
43 | 15 | "devDependencies": { |
44 | 16 | "@types/node": "^22.0.0", |
45 | 17 | "c8": "^10.0.0", |
|
51 | 23 | "typescript": "^5.0.0", |
52 | 24 | "xo": "^0.60.0" |
53 | 25 | }, |
54 | | - "scripts": { |
55 | | - "prepack": "npm run build && npm run format", |
56 | | - "build": "tsc --build --clean && tsc --build && type-coverage", |
57 | | - "format": "remark . -qfo && prettier . -w --log-level warn && xo --fix", |
58 | | - "test-api-dev": "node --conditions development test.js", |
59 | | - "test-api-prod": "node --conditions production test.js", |
60 | | - "test-api": "npm run test-api-dev && npm run test-api-prod", |
61 | | - "test-coverage": "c8 --100 --reporter lcov npm run test-api", |
62 | | - "test": "npm run build && npm run format && npm run test-coverage" |
| 26 | + "exports": "./index.js", |
| 27 | + "files": [ |
| 28 | + "index.d.ts", |
| 29 | + "index.js", |
| 30 | + "lib/" |
| 31 | + ], |
| 32 | + "funding": { |
| 33 | + "type": "opencollective", |
| 34 | + "url": "https://opencollective.com/unified" |
63 | 35 | }, |
| 36 | + "keywords": [ |
| 37 | + "footnote", |
| 38 | + "gfm", |
| 39 | + "markdown", |
| 40 | + "markup", |
| 41 | + "mdast-util", |
| 42 | + "mdast", |
| 43 | + "note", |
| 44 | + "unist", |
| 45 | + "utility", |
| 46 | + "util" |
| 47 | + ], |
| 48 | + "license": "MIT", |
| 49 | + "name": "mdast-util-gfm-footnote", |
64 | 50 | "prettier": { |
65 | 51 | "bracketSpacing": false, |
66 | 52 | "semi": false, |
|
74 | 60 | "remark-preset-wooorm" |
75 | 61 | ] |
76 | 62 | }, |
| 63 | + "repository": "syntax-tree/mdast-util-gfm-footnote", |
| 64 | + "scripts": { |
| 65 | + "build": "tsc --build --clean && tsc --build && type-coverage", |
| 66 | + "format": "remark --frail --output --quiet -- . && prettier --log-level warn --write -- . && xo --fix", |
| 67 | + "test-api-dev": "node --conditions development test.js", |
| 68 | + "test-api-prod": "node --conditions production test.js", |
| 69 | + "test-api": "npm run test-api-dev && npm run test-api-prod", |
| 70 | + "test-coverage": "c8 --100 --reporter lcov npm run test-api", |
| 71 | + "test": "npm run build && npm run format && npm run test-coverage" |
| 72 | + }, |
| 73 | + "sideEffects": false, |
77 | 74 | "typeCoverage": { |
78 | 75 | "atLeast": 100, |
79 | | - "detail": true, |
80 | | - "ignoreCatch": true, |
81 | 76 | "strict": true |
82 | 77 | }, |
| 78 | + "type": "module", |
| 79 | + "version": "2.0.0", |
83 | 80 | "xo": { |
84 | 81 | "overrides": [ |
85 | 82 | { |
|
0 commit comments