Skip to content

Commit 13cfb3e

Browse files
committed
Refactor package.json
1 parent 17c1b1b commit 13cfb3e

File tree

1 file changed

+36
-39
lines changed

1 file changed

+36
-39
lines changed

package.json

+36-39
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,9 @@
11
{
2-
"name": "hast-util-to-html",
3-
"version": "9.0.4",
4-
"description": "hast utility to serialize to HTML",
5-
"license": "MIT",
6-
"keywords": [
7-
"unist",
8-
"hast",
9-
"hast-util",
10-
"util",
11-
"utility",
12-
"html",
13-
"serialize",
14-
"stringify",
15-
"tostring"
16-
],
17-
"repository": "syntax-tree/hast-util-to-html",
18-
"bugs": "https://github.com/syntax-tree/hast-util-to-html/issues",
19-
"funding": {
20-
"type": "opencollective",
21-
"url": "https://opencollective.com/unified"
22-
},
232
"author": "Titus Wormer <[email protected]> (https://wooorm.com)",
3+
"bugs": "https://github.com/syntax-tree/hast-util-to-html/issues",
244
"contributors": [
255
"Titus Wormer <[email protected]> (https://wooorm.com)"
266
],
27-
"sideEffects": false,
28-
"type": "module",
29-
"exports": "./index.js",
30-
"files": [
31-
"lib/",
32-
"index.d.ts.map",
33-
"index.d.ts",
34-
"index.js"
35-
],
367
"dependencies": {
378
"@types/hast": "^3.0.0",
389
"@types/unist": "^3.0.0",
@@ -46,6 +17,7 @@
4617
"stringify-entities": "^4.0.0",
4718
"zwitch": "^2.0.4"
4819
},
20+
"description": "hast utility to serialize to HTML",
4921
"devDependencies": {
5022
"@types/node": "^22.0.0",
5123
"c8": "^10.0.0",
@@ -57,14 +29,30 @@
5729
"typescript": "^5.0.0",
5830
"xo": "^0.60.0"
5931
},
60-
"scripts": {
61-
"prepack": "npm run build && npm run format",
62-
"build": "tsc --build --clean && tsc --build && type-coverage",
63-
"format": "remark . -qfo && prettier . -w --log-level warn && xo --fix",
64-
"test-api": "node --conditions development test/index.js",
65-
"test-coverage": "c8 --100 --reporter lcov npm run test-api",
66-
"test": "npm run build && npm run format && npm run test-coverage"
32+
"exports": "./index.js",
33+
"files": [
34+
"index.d.ts.map",
35+
"index.d.ts",
36+
"index.js",
37+
"lib/"
38+
],
39+
"funding": {
40+
"type": "opencollective",
41+
"url": "https://opencollective.com/unified"
6742
},
43+
"keywords": [
44+
"hast-util",
45+
"hast",
46+
"html",
47+
"serialize",
48+
"stringify",
49+
"tostring",
50+
"unist",
51+
"utility",
52+
"util"
53+
],
54+
"license": "MIT",
55+
"name": "hast-util-to-html",
6856
"prettier": {
6957
"bracketSpacing": false,
7058
"semi": false,
@@ -82,12 +70,21 @@
8270
]
8371
]
8472
},
73+
"repository": "syntax-tree/hast-util-to-html",
74+
"scripts": {
75+
"build": "tsc --build --clean && tsc --build && type-coverage",
76+
"format": "remark --frail --output --quiet -- . && prettier --log-level warn --write -- . && xo --fix",
77+
"test-api": "node --conditions development test/index.js",
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,
8582
"typeCoverage": {
8683
"atLeast": 100,
87-
"detail": true,
88-
"ignoreCatch": true,
8984
"strict": true
9085
},
86+
"type": "module",
87+
"version": "9.0.4",
9188
"xo": {
9289
"overrides": [
9390
{

0 commit comments

Comments
 (0)