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

package.json « lint-md « tools - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ba3bbaf2328d23cf69b6f1e91cbfb1c6f9738a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "name": "lint-md",
  "description": "markdown linting",
  "version": "1.0.0",
  "scripts": {
    "build": "rollup -f es -p '@rollup/plugin-node-resolve={exportConditions: [\"node\"]}'  -p @rollup/plugin-commonjs -p rollup-plugin-cleanup lint-md.src.mjs --file lint-md.mjs"
  },
  "dependencies": {
    "remark-parse": "^10.0.1",
    "remark-preset-lint-node": "^3.3.1",
    "remark-stringify": "^10.0.2",
    "to-vfile": "^7.2.3",
    "unified": "^10.1.2",
    "vfile-reporter": "^7.0.4"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^22.0.2",
    "@rollup/plugin-node-resolve": "^14.1.0",
    "rollup": "^2.79.0",
    "rollup-plugin-cleanup": "^3.2.1"
  }
}