-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.4 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
38
39
40
41
42
43
44
45
46
{
"name": "markdownlint-rule-max-one-sentence-per-line",
"version": "0.0.2",
"description": "A custom markdownlint rule to enforce maximum one sentence per line",
"main": "./rule.js",
"keywords": [
"markdownlint-rule",
"markdownlint",
"markdown",
"lint"
],
"author": "Simon Schrottner",
"license": "MIT",
"homepage": "https://github.com/aepfli/markdownlint-rule-max-one-sentence-per-line",
"repository": {
"type": "git",
"url": "https://github.com/aepfli/markdownlint-rule-max-one-sentence-per-line.git"
},
"bugs": "https://github.com/aepfli/markdownlint-rule-max-one-sentence-per-line",
"scripts": {
"test": "ava test/*-tests.js",
"lint": "npm run lint:es && npm run lint:md",
"lint-fix": "npm run lint:es-fix && npm run lint:md-fix",
"lint:es": "eslint --max-warnings 0 .",
"lint:es-fix": "eslint --max-warnings 0 --fix .",
"lint:md": "markdownlint-cli2 '**/*.md' ",
"lint:md-fix": "markdownlint-cli2-fix '**/*.md'"
},
"engines": {
"node": ">=14.18.0"
},
"dependencies": {
"markdownlint-rule-helpers": "~0.25.0"
},
"devDependencies": {
"ava": "6.2.0",
"eslint": "8.38.0",
"eslint-plugin-es": "4.1.0",
"eslint-plugin-jsdoc": "41.1.2",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-regexp": "1.15.0",
"eslint-plugin-unicorn": "46.0.1",
"markdownlint": "^0.34.0",
"markdownlint-cli2": "^0.6.0"
}
}