-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.08 KB
/
package.json
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
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@dsmjs/remark-preset-lint",
"description": "remark preset to configure remark-lint with markdown style conventions",
"license": "MIT",
"version": "0.0.0-semantically-released",
"type": "module",
"exports": "./index.js",
"files": [
"index.js"
],
"publishConfig": {
"access": "public"
},
"repository": "dsmjs/remark-preset-lint",
"bugs": "https://github.com/dsmjs/remark-preset-lint/issues",
"homepage": "https://npm.im/@dsmjs/remark-preset-lint",
"author": "dsmJS <[email protected]> (https://dsmjs.com)",
"scripts": {
"test": "npm-run-all --print-label --parallel lint:*",
"lint:md": "remark . --frail",
"lint:sensitive": "ban",
"lint:js": "eslint . --cache",
"prepare": "husky install"
},
"devDependencies": {
"@dsmjs/eslint-config": "1.0.127",
"ban-sensitive-files": "^1.9.2",
"commitlint-config-dsmjs": "1.0.51",
"cz-conventional-changelog": "^3.0.2",
"husky": "8.0.3",
"npm-run-all": "^4.1.5",
"remark-cli": "12.0.0"
},
"dependencies": {
"@form8ion/remark-lint-preset": "^6.0.2"
}
}