-
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
48 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
@@ -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", | ||
|
@@ -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, | ||
|
@@ -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": [ | ||
{ | ||
|