Skip to content

Commit

Permalink
Refactor package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Oct 3, 2024
1 parent aa44482 commit b61fd02
Showing 1 changed file with 48 additions and 48 deletions.
96 changes: 48 additions & 48 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,48 +1,13 @@
{
"name": "unified",
"version": "11.0.5",
"description": "parse, inspect, transform, and serialize content through syntax trees",
"license": "MIT",
"keywords": [
"ast",
"compile",
"content",
"cst",
"parse",
"process",
"rehype",
"remark",
"retext",
"serialize",
"stringify",
"syntax",
"transform",
"tree",
"unified"
],
"homepage": "https://unifiedjs.com",
"repository": "unifiedjs/unified",
"bugs": "https://github.com/unifiedjs/unified/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"author": "Titus Wormer <[email protected]> (https://wooorm.com)",
"bugs": "https://github.com/unifiedjs/unified/issues",
"contributors": [
"Titus Wormer <[email protected]> (https://wooorm.com)",
"Junyoung Choi <[email protected]>",
"Hernan Rajchert <[email protected]>",
"Christian Murphy <[email protected]>",
"Vse Mozhet Byt <[email protected]>",
"Richard Littauer <[email protected]>"
],
"sideEffects": false,
"type": "module",
"exports": "./index.js",
"files": [
"lib/",
"index.d.ts",
"index.js"
"Hernan Rajchert <[email protected]>",
"Junyoung Choi <[email protected]>",
"Richard Littauer <[email protected]>",
"Titus Wormer <[email protected]> (https://wooorm.com)",
"Vse Mozhet Byt <[email protected]>"
],
"dependencies": {
"@types/unist": "^3.0.0",
Expand All @@ -53,6 +18,7 @@
"trough": "^2.0.0",
"vfile": "^6.0.0"
},
"description": "parse, inspect, transform, and serialize content through syntax trees",
"devDependencies": {
"@types/extend": "^3.0.0",
"@types/hast": "^3.0.0",
Expand All @@ -67,14 +33,36 @@
"typescript": "^5.0.0",
"xo": "^0.59.0"
},
"scripts": {
"build": "tsc --build --clean && tsc --build && node script/fix-types.js && type-coverage && tsd",
"format": "remark . --frail --output --quiet && prettier . --log-level warn --write && xo --fix",
"prepack": "npm run build && npm run format",
"test": "npm run build && npm run format && npm run test-coverage",
"test-api": "node --conditions development test/index.js",
"test-coverage": "c8 --100 --check-coverage --reporter lcov npm run test-api"
"exports": "./index.js",
"files": [
"lib/",
"index.d.ts",
"index.js"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"homepage": "https://unifiedjs.com",
"keywords": [
"ast",
"compile",
"content",
"cst",
"parse",
"process",
"rehype",
"remark",
"retext",
"serialize",
"stringify",
"syntax",
"transform",
"tree",
"unified"
],
"license": "MIT",
"name": "unified",
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
Expand All @@ -92,12 +80,24 @@
]
]
},
"repository": "unifiedjs/unified",
"scripts": {
"build": "tsc --build --clean && tsc --build && node script/fix-types.js && type-coverage && tsd",
"format": "remark . --frail --output --quiet && prettier . --log-level warn --write && xo --fix",
"prepack": "npm run build && npm run format",
"test": "npm run build && npm run format && npm run test-coverage",
"test-api": "node --conditions development test/index.js",
"test-coverage": "c8 --100 --check-coverage --reporter lcov npm run test-api"
},
"sideEffects": false,
"typeCoverage": {
"atLeast": 100,
"detail": true,
"ignoreCatch": true,
"strict": true
},
"type": "module",
"version": "11.0.5",
"xo": {
"overrides": [
{
Expand Down

0 comments on commit b61fd02

Please sign in to comment.