mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
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>
22 lines
540 B
JSON
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"
|
|
}
|
|
}
|