@markuplint/html-spec 4.14.2 → 4.16.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/CHANGELOG.md +36 -0
- package/README.md +317 -0
- package/index.d.ts +10 -4
- package/index.js +1 -1
- package/index.json +592 -771
- package/package.json +7 -8
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/html-spec",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.16.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>",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"private": false,
|
|
9
8
|
"main": "index.js",
|
|
10
9
|
"types": "index.d.ts",
|
|
11
10
|
"exports": {
|
|
@@ -22,16 +21,16 @@
|
|
|
22
21
|
"access": "public"
|
|
23
22
|
},
|
|
24
23
|
"scripts": {
|
|
25
|
-
"gen": "npm-run-all gen
|
|
24
|
+
"gen": "npm-run-all gen:build gen:prettier",
|
|
26
25
|
"gen:build": "node build.mjs",
|
|
27
|
-
"gen:prettier": "prettier --write index.json"
|
|
26
|
+
"gen:prettier": "npx prettier --write index.json"
|
|
28
27
|
},
|
|
29
28
|
"devDependencies": {
|
|
30
|
-
"@markuplint/spec-generator": "4.
|
|
31
|
-
"@markuplint/test-tools": "4.5.
|
|
29
|
+
"@markuplint/spec-generator": "4.8.0",
|
|
30
|
+
"@markuplint/test-tools": "4.5.21"
|
|
32
31
|
},
|
|
33
32
|
"dependencies": {
|
|
34
|
-
"@markuplint/ml-spec": "4.
|
|
33
|
+
"@markuplint/ml-spec": "4.10.0"
|
|
35
34
|
},
|
|
36
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "ae97eb2d31ecedf4f0800fbbf18588aad4ebca04"
|
|
37
36
|
}
|