@qualweb/core 0.7.39 → 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.
Files changed (2) hide show
  1. package/README.md +7 -6
  2. package/package.json +3 -3
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
- "wappalyzer": false, // wappalyzer module (https://github.com/qualweb/wappalyzer) - default value = false
117
- "act": true, // act-rules module (https://github.com/qualweb/act-rules) - default value = true
118
- "wcag": true, // wcag-techniques module (https://github.com/qualweb/wcag-techniques) - default value = true
119
- "bp": false, // best-practices module (https://github.com/qualweb/best-practices) - default value = true
120
- "counter": false // counter module (https://github.com/qualweb/counter) - default value = false
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
- "rules": ["QW-WCAG-T1", "H39"], // Array of techniques to execute, can be passed the QualWeb Technique ID or the WCAG 2.1 Technique Code
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.39",
3
+ "version": "0.7.41",
4
4
  "description": "QualWeb evaluator core engine",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -71,8 +71,8 @@
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.25",
75
- "@qualweb/locale": "0.1.11",
74
+ "@qualweb/evaluation": "0.3.26",
75
+ "@qualweb/locale": "0.1.12",
76
76
  "colors": "1.4.0",
77
77
  "puppeteer": "13.5.1",
78
78
  "puppeteer-cluster": "^0.23.0",