@qualweb/core 0.7.17 → 0.7.20
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 +14 -14
- package/README.md +497 -497
- package/dist/index.d.ts +19 -19
- package/dist/index.js +232 -232
- package/package.json +100 -100
package/package.json
CHANGED
|
@@ -1,100 +1,100 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@qualweb/core",
|
|
3
|
-
"version": "0.7.
|
|
4
|
-
"description": "QualWeb evaluator core engine",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"files": [
|
|
7
|
-
"dist/*"
|
|
8
|
-
],
|
|
9
|
-
"scripts": {
|
|
10
|
-
"tsc": "tsc",
|
|
11
|
-
"test": "mocha",
|
|
12
|
-
"test:core": "mocha test/core.spec.mjs",
|
|
13
|
-
"test:html": "mocha test/html.spec.mjs",
|
|
14
|
-
"test:crawler": "mocha test/crawler.spec.mjs",
|
|
15
|
-
"test:file": "mocha test/file.spec.mjs",
|
|
16
|
-
"test:urls": "mocha test/urls.spec.mjs",
|
|
17
|
-
"test:parallel": "mocha test/parallel.spec.mjs",
|
|
18
|
-
"test:validator": "mocha test/validator.spec.mjs",
|
|
19
|
-
"test:wp": "mocha test/wappalyzer.spec.mjs",
|
|
20
|
-
"test:locale": "mocha test/locale.spec.mjs",
|
|
21
|
-
"test:log": "mocha test/log.spec.mjs",
|
|
22
|
-
"prebuild": "rimraf dist",
|
|
23
|
-
"lint": "eslint src --ext .ts",
|
|
24
|
-
"lint:fix": "eslint src --ext .ts --fix",
|
|
25
|
-
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
|
|
26
|
-
"build": "
|
|
27
|
-
"docs": "typedoc --out docs src/index.ts",
|
|
28
|
-
"prepare": "npm run build"
|
|
29
|
-
},
|
|
30
|
-
"keywords": [
|
|
31
|
-
"qualweb",
|
|
32
|
-
"evaluator",
|
|
33
|
-
"web",
|
|
34
|
-
"accessibility",
|
|
35
|
-
"a11y"
|
|
36
|
-
],
|
|
37
|
-
"homepage": "https://github.com/qualweb/core#readme",
|
|
38
|
-
"repository": {
|
|
39
|
-
"type": "git",
|
|
40
|
-
"url": "https://github.com/qualweb/core.git"
|
|
41
|
-
},
|
|
42
|
-
"bugs": {
|
|
43
|
-
"url": "https://github.com/qualweb/core/issues",
|
|
44
|
-
"email": "qualweb@fc.ul.pt"
|
|
45
|
-
},
|
|
46
|
-
"author": {
|
|
47
|
-
"name": "João Vicente",
|
|
48
|
-
"email": "joao.vicente@campus.ul.pt"
|
|
49
|
-
},
|
|
50
|
-
"contributors": [
|
|
51
|
-
{
|
|
52
|
-
"name": "Carlos Duarte"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"name": "Bruno Andrade"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"name": "António Estriga"
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"name": "André Santos",
|
|
62
|
-
"url": "https://arbsantos.github.io"
|
|
63
|
-
}
|
|
64
|
-
],
|
|
65
|
-
"engines": {
|
|
66
|
-
"node": ">=12.0.0"
|
|
67
|
-
},
|
|
68
|
-
"license": "ISC",
|
|
69
|
-
"dependencies": {
|
|
70
|
-
"@qualweb/crawler": "0.3.12",
|
|
71
|
-
"@qualweb/dom": "0.2.
|
|
72
|
-
"@qualweb/earl-reporter": "0.4.1",
|
|
73
|
-
"@qualweb/evaluation": "0.3.
|
|
74
|
-
"@qualweb/locale": "0.1.10",
|
|
75
|
-
"colors": "
|
|
76
|
-
"puppeteer": "13.
|
|
77
|
-
"puppeteer-cluster": "^0.23.0",
|
|
78
|
-
"puppeteer-extra": "^3.2.3",
|
|
79
|
-
"puppeteer-extra-plugin-adblocker": "^2.12.0",
|
|
80
|
-
"puppeteer-extra-plugin-stealth": "^2.9.0"
|
|
81
|
-
},
|
|
82
|
-
"devDependencies": {
|
|
83
|
-
"@qualweb/types": "0.7.16",
|
|
84
|
-
"@tsconfig/recommended": "^1.0.1",
|
|
85
|
-
"@types/node": "^17.0.
|
|
86
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
87
|
-
"@typescript-eslint/parser": "^5.
|
|
88
|
-
"chai": "^4.3.4",
|
|
89
|
-
"eslint": "^8.
|
|
90
|
-
"eslint-config-prettier": "^8.
|
|
91
|
-
"eslint-plugin-prettier": "^4.0.0",
|
|
92
|
-
"eslint-plugin-sonarjs": "^0.
|
|
93
|
-
"mocha": "^9.1
|
|
94
|
-
"node-fetch": "^3.1.0",
|
|
95
|
-
"prettier": "^2.5.1",
|
|
96
|
-
"rimraf": "^3.0.2",
|
|
97
|
-
"typedoc": "^0.22.
|
|
98
|
-
"typescript": "^4.5.4"
|
|
99
|
-
}
|
|
100
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@qualweb/core",
|
|
3
|
+
"version": "0.7.20",
|
|
4
|
+
"description": "QualWeb evaluator core engine",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist/*"
|
|
8
|
+
],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"tsc": "tsc",
|
|
11
|
+
"test": "mocha",
|
|
12
|
+
"test:core": "mocha test/core.spec.mjs",
|
|
13
|
+
"test:html": "mocha test/html.spec.mjs",
|
|
14
|
+
"test:crawler": "mocha test/crawler.spec.mjs",
|
|
15
|
+
"test:file": "mocha test/file.spec.mjs",
|
|
16
|
+
"test:urls": "mocha test/urls.spec.mjs",
|
|
17
|
+
"test:parallel": "mocha test/parallel.spec.mjs",
|
|
18
|
+
"test:validator": "mocha test/validator.spec.mjs",
|
|
19
|
+
"test:wp": "mocha test/wappalyzer.spec.mjs",
|
|
20
|
+
"test:locale": "mocha test/locale.spec.mjs",
|
|
21
|
+
"test:log": "mocha test/log.spec.mjs",
|
|
22
|
+
"prebuild": "rimraf dist",
|
|
23
|
+
"lint": "eslint src --ext .ts",
|
|
24
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
25
|
+
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
|
|
26
|
+
"build": "tsc --build",
|
|
27
|
+
"docs": "typedoc --out docs src/index.ts",
|
|
28
|
+
"prepare": "npm run build"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"qualweb",
|
|
32
|
+
"evaluator",
|
|
33
|
+
"web",
|
|
34
|
+
"accessibility",
|
|
35
|
+
"a11y"
|
|
36
|
+
],
|
|
37
|
+
"homepage": "https://github.com/qualweb/core#readme",
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "https://github.com/qualweb/core.git"
|
|
41
|
+
},
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/qualweb/core/issues",
|
|
44
|
+
"email": "qualweb@fc.ul.pt"
|
|
45
|
+
},
|
|
46
|
+
"author": {
|
|
47
|
+
"name": "João Vicente",
|
|
48
|
+
"email": "joao.vicente@campus.ul.pt"
|
|
49
|
+
},
|
|
50
|
+
"contributors": [
|
|
51
|
+
{
|
|
52
|
+
"name": "Carlos Duarte"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "Bruno Andrade"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "António Estriga"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "André Santos",
|
|
62
|
+
"url": "https://arbsantos.github.io"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"engines": {
|
|
66
|
+
"node": ">=12.0.0"
|
|
67
|
+
},
|
|
68
|
+
"license": "ISC",
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"@qualweb/crawler": "0.3.12",
|
|
71
|
+
"@qualweb/dom": "0.2.6",
|
|
72
|
+
"@qualweb/earl-reporter": "0.4.1",
|
|
73
|
+
"@qualweb/evaluation": "0.3.12",
|
|
74
|
+
"@qualweb/locale": "0.1.10",
|
|
75
|
+
"colors": "1.4.0",
|
|
76
|
+
"puppeteer": "13.3.2",
|
|
77
|
+
"puppeteer-cluster": "^0.23.0",
|
|
78
|
+
"puppeteer-extra": "^3.2.3",
|
|
79
|
+
"puppeteer-extra-plugin-adblocker": "^2.12.0",
|
|
80
|
+
"puppeteer-extra-plugin-stealth": "^2.9.0"
|
|
81
|
+
},
|
|
82
|
+
"devDependencies": {
|
|
83
|
+
"@qualweb/types": "0.7.16",
|
|
84
|
+
"@tsconfig/recommended": "^1.0.1",
|
|
85
|
+
"@types/node": "^17.0.19",
|
|
86
|
+
"@typescript-eslint/eslint-plugin": "^5.12.0",
|
|
87
|
+
"@typescript-eslint/parser": "^5.12.0",
|
|
88
|
+
"chai": "^4.3.4",
|
|
89
|
+
"eslint": "^8.9.0",
|
|
90
|
+
"eslint-config-prettier": "^8.4.0",
|
|
91
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
92
|
+
"eslint-plugin-sonarjs": "^0.12.0",
|
|
93
|
+
"mocha": "^9.2.1",
|
|
94
|
+
"node-fetch": "^3.1.0",
|
|
95
|
+
"prettier": "^2.5.1",
|
|
96
|
+
"rimraf": "^3.0.2",
|
|
97
|
+
"typedoc": "^0.22.12",
|
|
98
|
+
"typescript": "^4.5.4"
|
|
99
|
+
}
|
|
100
|
+
}
|