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: 20035fb534a092e1a38f3b7646d7e95967f18591 (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
{
  "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": "^12.0.0",
    "remark-lint": "^7.0.0",
    "remark-preset-lint-node": "^1.17.1",
    "unified-args": "^8.0.0"
  },
  "main": "dist/index.js",
  "scripts": {
    "build": "npx rollup -c",
    "build-node": "npm run build && npx shx cp dist/index.js ../lint-md.js"
  }
}