node/tools/lint-md/package.json
Node.js GitHub Bot 10e6c70d14
tools: update lint-md-dependencies to rollup@2.67.0
PR-URL: https://github.com/nodejs/node/pull/41737
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Mestery <mestery@protonmail.com>
2022-03-14 09:32:17 -04:00

22 lines
677 B
JSON

{
"name": "lint-md",
"description": "markdown linting",
"version": "1.0.0",
"scripts": {
"build": "rollup -f es -p '@rollup/plugin-node-resolve={exportConditions: [\"node\"]}' -p @rollup/plugin-commonjs -p rollup-plugin-cleanup lint-md.src.mjs --file lint-md.mjs"
},
"dependencies": {
"remark-parse": "^10.0.1",
"remark-preset-lint-node": "^3.3.0",
"remark-stringify": "^10.0.2",
"to-vfile": "^7.2.3",
"unified": "^10.1.1",
"vfile-reporter": "^7.0.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup": "^2.67.0",
"rollup-plugin-cleanup": "^3.2.1"
}
}