@markuplint/html-spec 2.0.0-rc.6 → 2.0.0
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 +0 -15
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -6,23 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
|
-
Prerequisites: [Node.js](https://nodejs.org) (Version 12.4.0 or later)
|
|
10
|
-
|
|
11
9
|
```sh
|
|
12
10
|
$ npm install @markuplint/html-spec
|
|
13
11
|
|
|
14
12
|
$ yarn add @markuplint/html-spec
|
|
15
13
|
```
|
|
16
|
-
|
|
17
|
-
## Contributing
|
|
18
|
-
|
|
19
|
-
```
|
|
20
|
-
$ git clone git@github.com:markuplint/markuplint.git -b main
|
|
21
|
-
$ yarn
|
|
22
|
-
$ yarn build
|
|
23
|
-
$ yarn test
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
---
|
|
27
|
-
|
|
28
|
-
Copyright © 2021 markuplint. Under the MIT License.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/html-spec",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "A specification of HTML Living Standard for markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
@@ -16,17 +16,17 @@
|
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@apidevtools/json-schema-ref-parser": "^9.0.9",
|
|
19
|
-
"@types/cheerio": "^0.22.
|
|
19
|
+
"@types/cheerio": "^0.22.31",
|
|
20
20
|
"@types/cli-progress": "^3.9.2",
|
|
21
21
|
"@types/node-fetch": "2",
|
|
22
22
|
"cheerio": "^1.0.0-rc.10",
|
|
23
|
-
"cli-progress": "^3.
|
|
24
|
-
"fast-xml-parser": "^
|
|
23
|
+
"cli-progress": "^3.10.0",
|
|
24
|
+
"fast-xml-parser": "^4.0.2",
|
|
25
25
|
"jsonschema": "^1.4.0",
|
|
26
26
|
"node-fetch": "2"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@markuplint/ml-spec": "2.0.0
|
|
29
|
+
"@markuplint/ml-spec": "2.0.0"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "de81fc514acdf472f87184e3499e9364258f9b66"
|
|
32
32
|
}
|