Files
node/tools/node-lint-md-cli-rollup/package.json
Rich Trott 630fed8f07 tools: replace rollup with ncc
Replace rollup + plugins + config file with zeit/ncc package designed to
do the particular task that we're leveraging rollup for but with
zero-ish configuration. (rollup can do a whole lot more, but we're using
a tiny portion of its functionality.)

PR-URL: https://github.com/nodejs/node/pull/24813
Reviewed-By: Guy Bedford <guybedford@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
2018-12-05 14:02:17 -08:00

22 lines
540 B
JSON

{
"name": "node-lint-md-cli-rollup",
"description": "remark packaged for node markdown linting",
"version": "1.0.0",
"devDependencies": {
"@zeit/ncc": "^0.2.0"
},
"dependencies": {
"markdown-extensions": "^1.1.0",
"remark": "^10.0.0",
"remark-lint": "^6.0.3",
"remark-preset-lint-node": "^1.3.1",
"unified-args": "^6.0.0",
"unified-engine": "^5.1.0"
},
"main": "src/cli-entry.js",
"scripts": {
"build": "ncc build",
"build-node": "npm run build && cp dist/index.js ../lint-md.js"
}
}