Skip to content

Commit b61fd02

Browse files
committed
Refactor package.json
1 parent aa44482 commit b61fd02

File tree

1 file changed

+48
-48
lines changed

1 file changed

+48
-48
lines changed

package.json

+48-48
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,13 @@
11
{
2-
"name": "unified",
3-
"version": "11.0.5",
4-
"description": "parse, inspect, transform, and serialize content through syntax trees",
5-
"license": "MIT",
6-
"keywords": [
7-
"ast",
8-
"compile",
9-
"content",
10-
"cst",
11-
"parse",
12-
"process",
13-
"rehype",
14-
"remark",
15-
"retext",
16-
"serialize",
17-
"stringify",
18-
"syntax",
19-
"transform",
20-
"tree",
21-
"unified"
22-
],
23-
"homepage": "https://unifiedjs.com",
24-
"repository": "unifiedjs/unified",
25-
"bugs": "https://github.com/unifiedjs/unified/issues",
26-
"funding": {
27-
"type": "opencollective",
28-
"url": "https://opencollective.com/unified"
29-
},
302
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
3+
"bugs": "https://github.com/unifiedjs/unified/issues",
314
"contributors": [
32-
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
33-
"Junyoung Choi <fluke8259@gmail.com>",
34-
"Hernan Rajchert <hrajchert@gmail.com>",
355
"Christian Murphy <christian.murphy.42@gmail.com>",
36-
"Vse Mozhet Byt <vsemozhetbyt@gmail.com>",
37-
"Richard Littauer <richard.littauer@gmail.com>"
38-
],
39-
"sideEffects": false,
40-
"type": "module",
41-
"exports": "./index.js",
42-
"files": [
43-
"lib/",
44-
"index.d.ts",
45-
"index.js"
6+
"Hernan Rajchert <hrajchert@gmail.com>",
7+
"Junyoung Choi <fluke8259@gmail.com>",
8+
"Richard Littauer <richard.littauer@gmail.com>",
9+
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
10+
"Vse Mozhet Byt <vsemozhetbyt@gmail.com>"
4611
],
4712
"dependencies": {
4813
"@types/unist": "^3.0.0",
@@ -53,6 +18,7 @@
5318
"trough": "^2.0.0",
5419
"vfile": "^6.0.0"
5520
},
21+
"description": "parse, inspect, transform, and serialize content through syntax trees",
5622
"devDependencies": {
5723
"@types/extend": "^3.0.0",
5824
"@types/hast": "^3.0.0",
@@ -67,14 +33,36 @@
6733
"typescript": "^5.0.0",
6834
"xo": "^0.59.0"
6935
},
70-
"scripts": {
71-
"build": "tsc --build --clean && tsc --build && node script/fix-types.js && type-coverage && tsd",
72-
"format": "remark . --frail --output --quiet && prettier . --log-level warn --write && xo --fix",
73-
"prepack": "npm run build && npm run format",
74-
"test": "npm run build && npm run format && npm run test-coverage",
75-
"test-api": "node --conditions development test/index.js",
76-
"test-coverage": "c8 --100 --check-coverage --reporter lcov npm run test-api"
36+
"exports": "./index.js",
37+
"files": [
38+
"lib/",
39+
"index.d.ts",
40+
"index.js"
41+
],
42+
"funding": {
43+
"type": "opencollective",
44+
"url": "https://opencollective.com/unified"
7745
},
46+
"homepage": "https://unifiedjs.com",
47+
"keywords": [
48+
"ast",
49+
"compile",
50+
"content",
51+
"cst",
52+
"parse",
53+
"process",
54+
"rehype",
55+
"remark",
56+
"retext",
57+
"serialize",
58+
"stringify",
59+
"syntax",
60+
"transform",
61+
"tree",
62+
"unified"
63+
],
64+
"license": "MIT",
65+
"name": "unified",
7866
"prettier": {
7967
"bracketSpacing": false,
8068
"singleQuote": true,
@@ -92,12 +80,24 @@
9280
]
9381
]
9482
},
83+
"repository": "unifiedjs/unified",
84+
"scripts": {
85+
"build": "tsc --build --clean && tsc --build && node script/fix-types.js && type-coverage && tsd",
86+
"format": "remark . --frail --output --quiet && prettier . --log-level warn --write && xo --fix",
87+
"prepack": "npm run build && npm run format",
88+
"test": "npm run build && npm run format && npm run test-coverage",
89+
"test-api": "node --conditions development test/index.js",
90+
"test-coverage": "c8 --100 --check-coverage --reporter lcov npm run test-api"
91+
},
92+
"sideEffects": false,
9593
"typeCoverage": {
9694
"atLeast": 100,
9795
"detail": true,
9896
"ignoreCatch": true,
9997
"strict": true
10098
},
99+
"type": "module",
100+
"version": "11.0.5",
101101
"xo": {
102102
"overrides": [
103103
{

0 commit comments

Comments
 (0)