node/tools/lint-md/package.json
Node.js GitHub Bot 531a0a9980
tools: update lint-md-dependencies to rollup@2.73.0
PR-URL: https://github.com/nodejs/node/pull/43107
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
2022-05-16 11:12:19 +01: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.1",
"remark-stringify": "^10.0.2",
"to-vfile": "^7.2.3",
"unified": "^10.1.2",
"vfile-reporter": "^7.0.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"rollup": "^2.73.0",
"rollup-plugin-cleanup": "^3.2.1"
}
}