node/tools/lint-md/package.json
Node.js GitHub Bot de6de63af9
tools: update lint-md-dependencies
- `remark-preset-lint-node@5.1.0`
- `rollup@4.18.1`

PR-URL: https://github.com/nodejs/node/pull/53840
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: James M Snell <jasnell@gmail.com>
2024-07-16 00:33:17 +00:00

23 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": "^11.0.0",
"remark-preset-lint-node": "^5.1.0",
"remark-stringify": "^11.0.0",
"to-vfile": "^8.0.0",
"unified": "^11.0.5",
"vfile-reporter": "^8.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup": "^4.18.1",
"rollup-plugin-cleanup": "^3.2.1"
}
}