node/tools/node-lint-md-cli-rollup/package.json
Rich Trott e9b1a006a1
tools: fix markdown linting
This updates remark-preset-lint-node to 3.0.1, which actually works
unlike the 3.0.0 version we're using. (Sorry about 3.0.0 not actually
linting!)

It also updates rollup and the rollup config. So this uses the
latest everything as of this writing.

PR-URL: https://github.com/nodejs/node/pull/39832
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
2021-09-04 15:14:55 +02:00

24 lines
665 B
JSON

{
"name": "node-lint-md-cli-rollup",
"description": "remark packaged for Node.js Markdown linting",
"version": "2.0.2",
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"rollup": "^2.52.7",
"shx": "^0.3.3"
},
"dependencies": {
"markdown-extensions": "^1.1.1",
"remark": "^14.0.0",
"remark-gfm": "^2.0.0",
"remark-preset-lint-node": "^3.0.0",
"unified-args": "^9.0.0"
},
"main": "dist/index.js",
"scripts": {
"build": "npx rollup -c",
"build-node": "npm run build && npx shx cp dist/index.mjs ../lint-md.mjs"
}
}