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