reffy 19.2.2 → 19.2.4
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/LICENSE +0 -0
- package/README.md +0 -0
- package/index.js +0 -0
- package/package.json +57 -57
- package/schemas/browserlib/extract-algorithms.json +0 -0
- package/schemas/browserlib/extract-cssdfn.json +0 -0
- package/schemas/browserlib/extract-dfns.json +0 -0
- package/schemas/browserlib/extract-elements.json +0 -0
- package/schemas/browserlib/extract-events.json +0 -0
- package/schemas/browserlib/extract-headings.json +0 -0
- package/schemas/browserlib/extract-ids.json +0 -0
- package/schemas/browserlib/extract-links.json +0 -0
- package/schemas/browserlib/extract-refs.json +0 -0
- package/schemas/common.json +0 -0
- package/schemas/files/extracts/algorithms.json +0 -0
- package/schemas/files/extracts/css.json +0 -0
- package/schemas/files/extracts/dfns.json +0 -0
- package/schemas/files/extracts/elements.json +0 -0
- package/schemas/files/extracts/events.json +0 -0
- package/schemas/files/extracts/headings.json +0 -0
- package/schemas/files/extracts/ids.json +0 -0
- package/schemas/files/extracts/links.json +0 -0
- package/schemas/files/extracts/refs.json +0 -0
- package/schemas/files/index.json +0 -0
- package/schemas/postprocessing/css.json +0 -0
- package/schemas/postprocessing/events.json +0 -0
- package/schemas/postprocessing/idlnames-parsed.json +0 -0
- package/schemas/postprocessing/idlnames.json +0 -0
- package/schemas/postprocessing/idlparsed.json +0 -0
- package/src/browserlib/clone-and-clean.mjs +0 -0
- package/src/browserlib/create-outline.mjs +0 -0
- package/src/browserlib/extract-algorithms.mjs +0 -0
- package/src/browserlib/extract-cddl.mjs +0 -0
- package/src/browserlib/extract-cssdfn.mjs +0 -0
- package/src/browserlib/extract-dfns.mjs +0 -0
- package/src/browserlib/extract-elements.mjs +0 -0
- package/src/browserlib/extract-events.mjs +0 -0
- package/src/browserlib/extract-headings.mjs +0 -0
- package/src/browserlib/extract-ids.mjs +0 -0
- package/src/browserlib/extract-links.mjs +0 -0
- package/src/browserlib/extract-references.mjs +0 -0
- package/src/browserlib/extract-webidl.mjs +0 -0
- package/src/browserlib/get-absolute-url.mjs +0 -0
- package/src/browserlib/get-code-elements.mjs +0 -0
- package/src/browserlib/get-generator.mjs +0 -0
- package/src/browserlib/get-lastmodified-date.mjs +0 -0
- package/src/browserlib/get-revision.mjs +0 -0
- package/src/browserlib/get-title.mjs +0 -0
- package/src/browserlib/informative-selector.mjs +0 -0
- package/src/browserlib/map-ids-to-headings.mjs +0 -0
- package/src/browserlib/reffy.json +0 -0
- package/src/browserlib/trim-spaces.mjs +0 -0
- package/src/cli/check-missing-dfns.js +0 -0
- package/src/cli/merge-crawl-results.js +0 -0
- package/src/cli/parse-webidl.js +0 -0
- package/src/lib/css-grammar-parse-tree.schema.json +0 -0
- package/src/lib/css-grammar-parser.js +0 -0
- package/src/lib/fetch.js +0 -0
- package/src/lib/markdown-report.js +0 -0
- package/src/lib/mock-server.js +0 -0
- package/src/lib/post-processor.js +0 -0
- package/src/lib/specs-crawler.js +0 -0
- package/src/lib/throttled-queue.js +0 -0
- package/src/lib/util.js +0 -0
- package/src/postprocessing/annotate-links.js +0 -0
- package/src/postprocessing/csscomplete.js +0 -0
- package/src/postprocessing/cssmerge.js +0 -0
- package/src/postprocessing/events.js +0 -0
- package/src/postprocessing/idlnames.js +0 -0
- package/src/postprocessing/idlparsed.js +0 -0
- package/src/postprocessing/patch-dfns.js +0 -0
- package/src/specs/missing-css-rules.json +0 -0
- package/src/specs/spec-equivalents.json +0 -0
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
File without changes
|
package/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "reffy",
|
|
3
|
-
"version": "19.2.
|
|
4
|
-
"description": "W3C/WHATWG spec dependencies exploration companion. Features a short set of tools to study spec references as well as WebIDL term definitions and references found in W3C specifications.",
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "https://github.com/w3c/reffy.git"
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"index.js",
|
|
11
|
-
"reffy.js",
|
|
12
|
-
"src/",
|
|
13
|
-
"schemas/"
|
|
14
|
-
],
|
|
15
|
-
"bugs": {
|
|
16
|
-
"url": "https://github.com/w3c/reffy/issues"
|
|
17
|
-
},
|
|
18
|
-
"author": {
|
|
19
|
-
"name": "tidoust",
|
|
20
|
-
"email": "fd@w3.org"
|
|
21
|
-
},
|
|
22
|
-
"contributors": [
|
|
23
|
-
{
|
|
24
|
-
"name": "dontcallmedom",
|
|
25
|
-
"email": "dom@w3.org"
|
|
26
|
-
}
|
|
27
|
-
],
|
|
28
|
-
"license": "MIT",
|
|
29
|
-
"engines": {
|
|
30
|
-
"node": ">=20.18.1"
|
|
31
|
-
},
|
|
32
|
-
"type": "module",
|
|
33
|
-
"main": "index.js",
|
|
34
|
-
"bin": "./reffy.js",
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"ajv": "8.17.1",
|
|
37
|
-
"ajv-formats": "3.0.1",
|
|
38
|
-
"commander": "14.0.1",
|
|
39
|
-
"fetch-filecache-for-crawling": "5.1.1",
|
|
40
|
-
"puppeteer": "24.
|
|
41
|
-
"semver": "^7.3.5",
|
|
42
|
-
"web-specs": "3.
|
|
43
|
-
"webidl2": "24.5.0"
|
|
44
|
-
},
|
|
45
|
-
"devDependencies": {
|
|
46
|
-
"respec": "35.5.1",
|
|
47
|
-
"respec-hljs": "2.1.1",
|
|
48
|
-
"rollup": "4.
|
|
49
|
-
"undici": "^7.0.0"
|
|
50
|
-
},
|
|
51
|
-
"overrides": {
|
|
52
|
-
"puppeteer": "$puppeteer"
|
|
53
|
-
},
|
|
54
|
-
"scripts": {
|
|
55
|
-
"test": "node --test"
|
|
56
|
-
}
|
|
57
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "reffy",
|
|
3
|
+
"version": "19.2.4",
|
|
4
|
+
"description": "W3C/WHATWG spec dependencies exploration companion. Features a short set of tools to study spec references as well as WebIDL term definitions and references found in W3C specifications.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/w3c/reffy.git"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"index.js",
|
|
11
|
+
"reffy.js",
|
|
12
|
+
"src/",
|
|
13
|
+
"schemas/"
|
|
14
|
+
],
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/w3c/reffy/issues"
|
|
17
|
+
},
|
|
18
|
+
"author": {
|
|
19
|
+
"name": "tidoust",
|
|
20
|
+
"email": "fd@w3.org"
|
|
21
|
+
},
|
|
22
|
+
"contributors": [
|
|
23
|
+
{
|
|
24
|
+
"name": "dontcallmedom",
|
|
25
|
+
"email": "dom@w3.org"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=20.18.1"
|
|
31
|
+
},
|
|
32
|
+
"type": "module",
|
|
33
|
+
"main": "index.js",
|
|
34
|
+
"bin": "./reffy.js",
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"ajv": "8.17.1",
|
|
37
|
+
"ajv-formats": "3.0.1",
|
|
38
|
+
"commander": "14.0.1",
|
|
39
|
+
"fetch-filecache-for-crawling": "5.1.1",
|
|
40
|
+
"puppeteer": "24.23.0",
|
|
41
|
+
"semver": "^7.3.5",
|
|
42
|
+
"web-specs": "3.67.0",
|
|
43
|
+
"webidl2": "24.5.0"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"respec": "35.5.1",
|
|
47
|
+
"respec-hljs": "2.1.1",
|
|
48
|
+
"rollup": "4.52.4",
|
|
49
|
+
"undici": "^7.0.0"
|
|
50
|
+
},
|
|
51
|
+
"overrides": {
|
|
52
|
+
"puppeteer": "$puppeteer"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"test": "node --test"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/schemas/common.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/schemas/files/index.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/cli/parse-webidl.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/lib/fetch.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/lib/mock-server.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/lib/specs-crawler.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/lib/util.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|