Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « node-lint-md-cli-rollup « tools - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7776ad0d5dcc5b389da408df8155ce2c950c17a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  "name": "node-lint-md-cli-rollup",
  "description": "remark packaged for Node.js Markdown linting",
  "version": "2.0.2",
  "devDependencies": {
    "@rollup/plugin-commonjs": "^17.0.0",
    "@rollup/plugin-json": "^4.1.0",
    "@rollup/plugin-node-resolve": "^11.0.1",
    "rollup": "^2.36.1",
    "shx": "^0.3.3"
  },
  "dependencies": {
    "markdown-extensions": "^1.1.1",
    "remark": "^13.0.0",
    "remark-gfm": "^1.0.0",
    "remark-lint": "^8.0.0",
    "remark-preset-lint-node": "^2.0.0",
    "unified-args": "^8.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"
  }
}