node/tools/lint-md/package.json
Node.js GitHub Bot 706c305381
tools: update lint-md-dependencies to rollup@3.21.5
PR-URL: https://github.com/nodejs/node/pull/47903
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2023-05-12 11:57:19 +02: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.4.0",
"remark-stringify": "^10.0.2",
"to-vfile": "^7.2.4",
"unified": "^10.1.2",
"vfile-reporter": "^7.0.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"rollup": "^3.21.5",
"rollup-plugin-cleanup": "^3.2.1"
}
}