0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00
nodejs/tools/node-lint-md-cli-rollup/package.json
Rich Trott 82afd85a31 tools: update lint-md task to lint for possessives of Node.js
Add a markdown lint rule to prohibit "Node.js'" and "Node.js's".
Instead, of "Node.js' module system", use "the Node.js module system".

Refs: https://github.com/nodejs/node/pull/31748#issuecomment-585087745

PR-URL: https://github.com/nodejs/node/pull/31862
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
2020-02-20 21:37:29 -08:00

25 lines
664 B
JSON

{
"name": "node-lint-md-cli-rollup",
"description": "remark packaged for Node.js Markdown linting",
"version": "2.0.2",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-json": "^4.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"rollup": "^1.30.1",
"shx": "^0.3.2"
},
"dependencies": {
"markdown-extensions": "^1.1.1",
"remark": "^11.0.2",
"remark-lint": "^6.0.5",
"remark-preset-lint-node": "^1.13.0",
"unified-args": "^7.1.0"
},
"main": "dist/index.js",
"scripts": {
"build": "npx rollup -c",
"build-node": "npm run build && npx shx cp dist/index.js ../lint-md.js"
}
}