web-specs 4.2.0 → 4.4.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.
Files changed (3) hide show
  1. package/README.md +18 -5
  2. package/index.json +139 -18
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -72,7 +72,7 @@ npm install web-specs
72
72
  You can then retrieve the list from your Node.js program:
73
73
 
74
74
  ```js
75
- const specs = require("web-specs");
75
+ import specs from "web-specs" with { type: "json" };
76
76
  console.log(JSON.stringify(specs, null, 2));
77
77
  ```
78
78
 
@@ -101,6 +101,21 @@ property targets the public page that describes the spec on the standardization
101
101
  organization's web site. To upgrade from version `2.x` to version `3.x`, make
102
102
  sure that your code can handle specs without a `nightly` property.
103
103
 
104
+ ### From the `browser-specs` package
105
+
106
+ The `browser-specs` package, which contained the subset of specs that are in
107
+ good [standing](#standing) and that [target web browsers](#categories), is no
108
+ longer being published. You may obtain the same list from the `web-specs`
109
+ package by applying the following filtering logic:
110
+
111
+ ```js
112
+ import webSpecs from "web-specs" with { type: "json" };
113
+ const browserSpecs = webSpecs.filter(spec =>
114
+ spec.categories?.includes('browser') &&
115
+ spec.standing === 'good'
116
+ );
117
+ ```
118
+
104
119
  <!-- COMMON-BODY: start -->
105
120
  ## Spec object
106
121
 
@@ -217,8 +232,7 @@ possible value so far is `"browser"`, which means that the spec targets web
217
232
  browsers.
218
233
 
219
234
  The `categories` property is always set. Value may be an empty array for some of
220
- the specs in the `web-specs` package. Value always contains `"browser"` for
221
- specs in the `browser-specs` package.
235
+ the specs in the `web-specs` package.
222
236
 
223
237
 
224
238
  ### `standing`
@@ -238,8 +252,7 @@ Specs whose status is "Discontinued Draft" typically have a standing set to
238
252
  `"discontinued"`.
239
253
 
240
254
  The `standing` property is always set. Value may either be `"good"`, `"pending"`
241
- or `"discontinued"`. Value is always `"good"` for specs in the `browser-specs`
242
- package.
255
+ or `"discontinued"`.
243
256
 
244
257
 
245
258
  ### `obsoletedBy`
package/index.json CHANGED
@@ -417,7 +417,7 @@
417
417
  },
418
418
  "nightly": {
419
419
  "url": "https://www.ietf.org/archive/id/draft-cutler-httpbis-partitioned-cookies-01.html",
420
- "status": "Editor's Draft",
420
+ "status": "Discontinued Draft",
421
421
  "repository": "https://github.com/privacycg/CHIPS",
422
422
  "sourcePath": "spec/draft-cutler-httpbis-partitioned-cookies.md",
423
423
  "alternateUrls": [],
@@ -436,7 +436,7 @@
436
436
  "categories": [
437
437
  "browser"
438
438
  ],
439
- "standing": "good"
439
+ "standing": "discontinued"
440
440
  },
441
441
  {
442
442
  "url": "https://datatracker.ietf.org/doc/html/draft-davidben-http-client-hint-reliability",
@@ -451,7 +451,7 @@
451
451
  },
452
452
  "nightly": {
453
453
  "url": "https://www.ietf.org/archive/id/draft-davidben-http-client-hint-reliability-03.html",
454
- "status": "Editor's Draft",
454
+ "status": "Discontinued Draft",
455
455
  "repository": "https://github.com/davidben/http-client-hint-reliability",
456
456
  "sourcePath": "draft-davidben-http-client-hint-reliability.md",
457
457
  "alternateUrls": [],
@@ -470,7 +470,7 @@
470
470
  "categories": [
471
471
  "browser"
472
472
  ],
473
- "standing": "good"
473
+ "standing": "discontinued"
474
474
  },
475
475
  {
476
476
  "url": "https://datatracker.ietf.org/doc/html/draft-ietf-httpapi-idempotency-key-header/",
@@ -485,7 +485,7 @@
485
485
  },
486
486
  "nightly": {
487
487
  "url": "https://www.ietf.org/archive/id/draft-ietf-httpapi-idempotency-key-header-07.html",
488
- "status": "Editor's Draft",
488
+ "status": "Discontinued Draft",
489
489
  "repository": "https://github.com/ietf-wg-httpapi/idempotency",
490
490
  "sourcePath": "draft-ietf-httpapi-idempotency-key-header.md",
491
491
  "alternateUrls": [],
@@ -504,7 +504,7 @@
504
504
  "categories": [
505
505
  "browser"
506
506
  ],
507
- "standing": "good"
507
+ "standing": "discontinued"
508
508
  },
509
509
  {
510
510
  "url": "https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-layered-cookies/",
@@ -837,7 +837,13 @@
837
837
  "categories": [
838
838
  "browser"
839
839
  ],
840
- "standing": "good"
840
+ "standing": "good",
841
+ "tests": {
842
+ "repository": "https://github.com/web-platform-tests/wpt",
843
+ "testPaths": [
844
+ "css/compositing"
845
+ ]
846
+ }
841
847
  },
842
848
  {
843
849
  "url": "https://drafts.csswg.org/css-color-6/",
@@ -1480,7 +1486,13 @@
1480
1486
  "categories": [
1481
1487
  "browser"
1482
1488
  ],
1483
- "standing": "good"
1489
+ "standing": "good",
1490
+ "tests": {
1491
+ "repository": "https://github.com/web-platform-tests/wpt",
1492
+ "testPaths": [
1493
+ "css/filter-effects"
1494
+ ]
1495
+ }
1484
1496
  },
1485
1497
  {
1486
1498
  "url": "https://drafts.csswg.org/pointer-animations-1/",
@@ -8449,6 +8461,40 @@
8449
8461
  ],
8450
8462
  "standing": "good"
8451
8463
  },
8464
+ {
8465
+ "url": "https://webmachinelearning.github.io/proofreader-api/",
8466
+ "seriesComposition": "full",
8467
+ "shortname": "proofreader-api",
8468
+ "series": {
8469
+ "shortname": "proofreader-api",
8470
+ "currentSpecification": "proofreader-api",
8471
+ "title": "Proofreader API",
8472
+ "shortTitle": "Proofreader API",
8473
+ "nightlyUrl": "https://webmachinelearning.github.io/proofreader-api/"
8474
+ },
8475
+ "organization": "W3C",
8476
+ "groups": [
8477
+ {
8478
+ "name": "Web Machine Learning Community Group",
8479
+ "url": "https://www.w3.org/community/webmachinelearning/"
8480
+ }
8481
+ ],
8482
+ "nightly": {
8483
+ "url": "https://webmachinelearning.github.io/proofreader-api/",
8484
+ "status": "Draft Community Group Report",
8485
+ "alternateUrls": [],
8486
+ "repository": "https://github.com/webmachinelearning/proofreader-api",
8487
+ "sourcePath": "index.bs",
8488
+ "filename": "index.html"
8489
+ },
8490
+ "title": "Proofreader API",
8491
+ "source": "spec",
8492
+ "shortTitle": "Proofreader API",
8493
+ "categories": [
8494
+ "browser"
8495
+ ],
8496
+ "standing": "good"
8497
+ },
8452
8498
  {
8453
8499
  "url": "https://webmachinelearning.github.io/translation-api/",
8454
8500
  "seriesComposition": "full",
@@ -14891,7 +14937,13 @@
14891
14937
  "categories": [
14892
14938
  "browser"
14893
14939
  ],
14894
- "standing": "good"
14940
+ "standing": "good",
14941
+ "tests": {
14942
+ "repository": "https://github.com/web-platform-tests/wpt",
14943
+ "testPaths": [
14944
+ "css/compositing"
14945
+ ]
14946
+ }
14895
14947
  },
14896
14948
  {
14897
14949
  "url": "https://www.w3.org/TR/compute-pressure/",
@@ -17465,8 +17517,8 @@
17465
17517
  "series": {
17466
17518
  "shortname": "css-gaps",
17467
17519
  "currentSpecification": "css-gaps-1",
17468
- "title": "CSS Gap Decorations Module",
17469
- "shortTitle": "CSS Gap Decorations",
17520
+ "title": "CSS Gaps",
17521
+ "shortTitle": "CSS Gaps",
17470
17522
  "releaseUrl": "https://www.w3.org/TR/css-gaps/",
17471
17523
  "nightlyUrl": "https://drafts.csswg.org/css-gaps/"
17472
17524
  },
@@ -17494,9 +17546,9 @@
17494
17546
  "sourcePath": "css-gaps-1/Overview.bs",
17495
17547
  "filename": "index.html"
17496
17548
  },
17497
- "title": "CSS Gap Decorations Module Level 1",
17549
+ "title": "CSS Gaps Module Level 1",
17498
17550
  "source": "w3c",
17499
- "shortTitle": "CSS Gap Decorations 1",
17551
+ "shortTitle": "CSS Gaps 1",
17500
17552
  "categories": [
17501
17553
  "browser"
17502
17554
  ],
@@ -18190,7 +18242,13 @@
18190
18242
  "categories": [
18191
18243
  "browser"
18192
18244
  ],
18193
- "standing": "good"
18245
+ "standing": "good",
18246
+ "tests": {
18247
+ "repository": "https://github.com/web-platform-tests/wpt",
18248
+ "testPaths": [
18249
+ "css/css-masking"
18250
+ ]
18251
+ }
18194
18252
  },
18195
18253
  {
18196
18254
  "url": "https://www.w3.org/TR/css-mixins-1/",
@@ -22487,7 +22545,13 @@
22487
22545
  "categories": [
22488
22546
  "browser"
22489
22547
  ],
22490
- "standing": "good"
22548
+ "standing": "good",
22549
+ "tests": {
22550
+ "repository": "https://github.com/web-platform-tests/wpt",
22551
+ "testPaths": [
22552
+ "css/fill-stroke"
22553
+ ]
22554
+ }
22491
22555
  },
22492
22556
  {
22493
22557
  "url": "https://www.w3.org/TR/filter-effects-1/",
@@ -22532,7 +22596,13 @@
22532
22596
  "categories": [
22533
22597
  "browser"
22534
22598
  ],
22535
- "standing": "good"
22599
+ "standing": "good",
22600
+ "tests": {
22601
+ "repository": "https://github.com/web-platform-tests/wpt",
22602
+ "testPaths": [
22603
+ "css/filter-effects"
22604
+ ]
22605
+ }
22536
22606
  },
22537
22607
  {
22538
22608
  "url": "https://www.w3.org/TR/fingerprinting-guidance/",
@@ -22794,7 +22864,13 @@
22794
22864
  "categories": [
22795
22865
  "browser"
22796
22866
  ],
22797
- "standing": "good"
22867
+ "standing": "good",
22868
+ "tests": {
22869
+ "repository": "https://github.com/web-platform-tests/wpt",
22870
+ "testPaths": [
22871
+ "css/geometry"
22872
+ ]
22873
+ }
22798
22874
  },
22799
22875
  {
22800
22876
  "url": "https://www.w3.org/TR/gpc/",
@@ -24771,7 +24847,13 @@
24771
24847
  "categories": [
24772
24848
  "browser"
24773
24849
  ],
24774
- "standing": "good"
24850
+ "standing": "good",
24851
+ "tests": {
24852
+ "repository": "https://github.com/web-platform-tests/wpt",
24853
+ "testPaths": [
24854
+ "css/motion"
24855
+ ]
24856
+ }
24775
24857
  },
24776
24858
  {
24777
24859
  "url": "https://www.w3.org/TR/mse-byte-stream-format-isobmff/",
@@ -29629,6 +29711,45 @@
29629
29711
  "categories": [],
29630
29712
  "standing": "good"
29631
29713
  },
29714
+ {
29715
+ "url": "https://www.w3.org/TR/vc-di-quantum-resistant-1.0/",
29716
+ "seriesComposition": "full",
29717
+ "shortname": "vc-di-quantum-resistant-1.0",
29718
+ "series": {
29719
+ "shortname": "vc-di-quantum-resistant",
29720
+ "currentSpecification": "vc-di-quantum-resistant-1.0",
29721
+ "title": "Quantum-Resistant Cryptosuites v1.0",
29722
+ "shortTitle": "Quantum-Resistant Cryptosuites v1.0",
29723
+ "releaseUrl": "https://www.w3.org/TR/vc-di-quantum-resistant/",
29724
+ "nightlyUrl": "https://w3c.github.io/vc-di-quantum-resistant/"
29725
+ },
29726
+ "seriesVersion": "1.0",
29727
+ "organization": "W3C",
29728
+ "groups": [
29729
+ {
29730
+ "name": "Verifiable Credentials Working Group",
29731
+ "url": "https://www.w3.org/groups/wg/vc/"
29732
+ }
29733
+ ],
29734
+ "release": {
29735
+ "url": "https://www.w3.org/TR/vc-di-quantum-resistant-1.0/",
29736
+ "status": "First Public Working Draft",
29737
+ "filename": "Overview.html"
29738
+ },
29739
+ "nightly": {
29740
+ "url": "https://w3c.github.io/vc-di-quantum-resistant/",
29741
+ "status": "Editor's Draft",
29742
+ "alternateUrls": [],
29743
+ "repository": "https://github.com/w3c/vc-di-quantum-resistant",
29744
+ "sourcePath": "index.html",
29745
+ "filename": "index.html"
29746
+ },
29747
+ "title": "Quantum-Resistant Cryptosuites v1.0",
29748
+ "source": "w3c",
29749
+ "shortTitle": "Quantum-Resistant Cryptosuites v1.0",
29750
+ "categories": [],
29751
+ "standing": "good"
29752
+ },
29632
29753
  {
29633
29754
  "url": "https://www.w3.org/TR/vc-jose-cose/",
29634
29755
  "seriesComposition": "full",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-specs",
3
- "version": "4.2.0",
3
+ "version": "4.4.0",
4
4
  "description": "Curated list of technical Web specifications",
5
5
  "repository": {
6
6
  "type": "git",