-
-
Notifications
You must be signed in to change notification settings - Fork 35.3k
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 677 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 677 Bytes
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": "^11.0.0",
"remark-preset-lint-node": "^5.0.2",
"remark-stringify": "^11.0.0",
"to-vfile": "^8.0.0",
"unified": "^11.0.4",
"vfile-reporter": "^8.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup": "^4.17.2",
"rollup-plugin-cleanup": "^3.2.1"
}
}