@ivuorinen/markdownlint-config 1.0.21 → 1.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/index.json +10 -2
- package/package.json +8 -5
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
## Table of Contents <!-- omit in toc -->
|
|
8
8
|
|
|
9
9
|
- [Installation](#installation)
|
|
10
|
-
- [
|
|
10
|
+
- [Documentation](#documentation)
|
|
11
11
|
- [Contributing](#contributing)
|
|
12
12
|
- [Changelog](#changelog)
|
|
13
13
|
- [License](#license)
|
|
@@ -32,7 +32,7 @@ After installing it, a _`.markdownlint.json`_ file will be created automatically
|
|
|
32
32
|
}
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
##
|
|
35
|
+
## Documentation
|
|
36
36
|
|
|
37
37
|
Read the [MarkdownLint docs][markdownlint-docs-link] for more information.
|
|
38
38
|
|
|
@@ -54,7 +54,7 @@ Distributed under the MIT License. See [LICENSE][license-link] for more informat
|
|
|
54
54
|
[contributing-link]: https://github.com/ivuorinen/.github/blob/main/CONTRIBUTING.md
|
|
55
55
|
[issue-link]: https://github.com/ivuorinen/base-configs-markdownlint/issues
|
|
56
56
|
[license-badge]: https://img.shields.io/github/license/ivuorinen/base-configs-markdownlint?style=flat-square&labelColor=292a44&color=663399
|
|
57
|
-
[license-link]: ./LICENSE
|
|
57
|
+
[license-link]: ./LICENSE.md
|
|
58
58
|
[npm-badge]: https://img.shields.io/npm/v/@ivuorinen/markdownlint-config?style=flat-square&labelColor=292a44&color=663399
|
|
59
59
|
[npm-link]: https://www.npmjs.com/package/@ivuorinen/markdownlint-config
|
|
60
60
|
[pull-request-link]: https://github.com/ivuorinen/base-configs-markdownlint/pulls
|
package/index.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ivuorinen/markdownlint-config",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.23",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "ivuorinen's shareable configuration for markdownlint.",
|
|
6
6
|
"author": {
|
|
@@ -25,6 +25,9 @@
|
|
|
25
25
|
"ivuorinen"
|
|
26
26
|
],
|
|
27
27
|
"license": "MIT",
|
|
28
|
+
"exports": {
|
|
29
|
+
".": "./index.json"
|
|
30
|
+
},
|
|
28
31
|
"main": "index.json",
|
|
29
32
|
"publishConfig": {
|
|
30
33
|
"access": "public"
|
|
@@ -34,16 +37,16 @@
|
|
|
34
37
|
"url": "git+https://github.com/ivuorinen/base-configs-markdownlint.git"
|
|
35
38
|
},
|
|
36
39
|
"scripts": {
|
|
37
|
-
"postinstall": "node scripts/postinstall.cjs"
|
|
40
|
+
"postinstall": "node scripts/postinstall.cjs",
|
|
41
|
+
"test": "node -e \"JSON.parse(require('fs').readFileSync('./index.json', 'utf8')); console.log('index.json is valid JSON');\""
|
|
38
42
|
},
|
|
39
43
|
"dependencies": {
|
|
40
44
|
"@ivuorinen/config-checker": "^2.1.2",
|
|
41
|
-
"markdownlint-cli": "^0.48.0"
|
|
42
|
-
"minimatch": "^10.2.4"
|
|
45
|
+
"markdownlint-cli": "^0.48.0"
|
|
43
46
|
},
|
|
44
47
|
"packageManager": "yarn@4.13.0",
|
|
45
48
|
"devDependencies": {
|
|
46
|
-
"@ivuorinen/semantic-release-config": "^1.1.
|
|
49
|
+
"@ivuorinen/semantic-release-config": "^1.1.20"
|
|
47
50
|
},
|
|
48
51
|
"resolutions": {
|
|
49
52
|
"minimatch": ">=10.2.3"
|