-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "markdownlint-rule-search-replace",
"version": "1.2.0",
"description": "A custom markdownlint rule for search and replaces",
"main": "rule.js",
"author": "Onkar Ruikar",
"license": "MIT",
"homepage": "https://github.com/OnkarRuikar/markdownlint-rule-search-replace",
"repository": {
"type": "git",
"url": "https://github.com/OnkarRuikar/markdownlint-rule-search-replace.git"
},
"bugs": "https://github.com/OnkarRuikar/markdownlint-rule-search-replace/issues",
"keywords": [
"markdownlint-rule",
"markdownlint",
"markdown",
"lint"
],
"private": false,
"scripts": {
"test": "ava tests/*-tests.js",
"lint-check": "eslint --max-warnings 0 .",
"lint": "eslint --max-warnings 0 --fix .",
"pretty-check": "prettier --check .",
"pretty": "prettier --write ."
},
"engines": {
"node": ">=16"
},
"dependencies": {
"markdownlint-rule-helpers": "0.21.0"
},
"devDependencies": {
"ava": "5.3.1",
"eslint": "8.47.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-es": "4.1.0",
"eslint-plugin-jsdoc": "46.4.6",
"eslint-plugin-n": "16.0.2",
"eslint-plugin-unicorn": "48.0.1",
"markdownlint": "0.30.0",
"prettier": "3.0.2"
}
}