@qualweb/core 0.7.40 → 0.7.41
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 +7 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -113,11 +113,12 @@ The available options fot the **evaluate()** function are:
|
|
|
113
113
|
"translate": "en", // OR { "translate": "en", "fallback": "en" } OR { own translation object } check https://github.com/qualweb/locale#readme. Default = "en"
|
|
114
114
|
"execute": {
|
|
115
115
|
// choose which modules to execute
|
|
116
|
-
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
116
|
+
// if this option is not specified, the default values below will be applied, otherwise unspecified values will default to false
|
|
117
|
+
"wappalyzer": false, // wappalyzer module (https://github.com/qualweb/wappalyzer)
|
|
118
|
+
"act": true, // act-rules module (https://github.com/qualweb/act-rules)
|
|
119
|
+
"wcag": true, // wcag-techniques module (https://github.com/qualweb/wcag-techniques)
|
|
120
|
+
"bp": false, // best-practices module (https://github.com/qualweb/best-practices)
|
|
121
|
+
"counter": false // counter module (https://github.com/qualweb/counter)
|
|
121
122
|
},
|
|
122
123
|
"act-rules": {
|
|
123
124
|
// More information about this options at https://github.com/qualweb/act-rules
|
|
@@ -128,7 +129,7 @@ The available options fot the **evaluate()** function are:
|
|
|
128
129
|
},
|
|
129
130
|
"wcag-techniques": {
|
|
130
131
|
// More information about this options at https://github.com/qualweb/wcag-techniques
|
|
131
|
-
"
|
|
132
|
+
"techniques": ["QW-WCAG-T1", "H39"], // Array of techniques to execute, can be passed the QualWeb Technique ID or the WCAG 2.1 Technique Code
|
|
132
133
|
"exclude": ["QW-WCAG-T1", "H39"], // Array of techniques to exclude, can be passed the QualWeb Technique ID or the WCAG 2.1 Technique Code
|
|
133
134
|
"levels": ["A", "AA", "AAA"], // Conformance levels to execute,
|
|
134
135
|
"principles": ["Perceivable", "Operable", "Understandable", "Robust"] // Principles to execute
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qualweb/core",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.41",
|
|
4
4
|
"description": "QualWeb evaluator core engine",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"@qualweb/crawler": "0.3.15",
|
|
72
72
|
"@qualweb/dom": "0.2.6",
|
|
73
73
|
"@qualweb/earl-reporter": "0.4.3",
|
|
74
|
-
"@qualweb/evaluation": "0.3.
|
|
74
|
+
"@qualweb/evaluation": "0.3.26",
|
|
75
75
|
"@qualweb/locale": "0.1.12",
|
|
76
76
|
"colors": "1.4.0",
|
|
77
77
|
"puppeteer": "13.5.1",
|