mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
Prior to this commit, running `node tools/lint-md --help` and `node tools/lint-md --version` resulted in an error. * Use `unified-args` to start processor * Use `unified-args`'s error handler Fixes: https://github.com/nodejs/node/issues/30156 PR-URL: https://github.com/nodejs/node/pull/30216 Reviewed-By: Rich Trott <rtrott@gmail.com>
24 lines
635 B
JSON
24 lines
635 B
JSON
{
|
|
"name": "node-lint-md-cli-rollup",
|
|
"description": "remark packaged for Node.js Markdown linting",
|
|
"version": "2.0.1",
|
|
"devDependencies": {
|
|
"rollup": "^1.27.11",
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
"rollup-plugin-json": "^4.0.0",
|
|
"rollup-plugin-node-resolve": "^5.2.0"
|
|
},
|
|
"dependencies": {
|
|
"markdown-extensions": "^1.1.1",
|
|
"remark": "^11.0.2",
|
|
"remark-lint": "^6.0.5",
|
|
"remark-preset-lint-node": "^1.11.0",
|
|
"unified-args": "^7.1.0"
|
|
},
|
|
"main": "src/cli-entry.js",
|
|
"scripts": {
|
|
"build": "ncc build -m",
|
|
"build-node": "npm run build && cp dist/index.js ../lint-md.js"
|
|
}
|
|
}
|