-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
104 lines (104 loc) · 2.88 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@qualweb/core",
"version": "0.7.46",
"description": "QualWeb evaluator core engine",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"tsc": "tsc",
"test": "mocha",
"test:core": "mocha test/core.spec.mjs",
"test:html": "mocha test/html.spec.mjs",
"test:crawler": "mocha test/crawler.spec.mjs",
"test:file": "mocha test/file.spec.mjs",
"test:urls": "mocha test/urls.spec.mjs",
"test:parallel": "mocha test/parallel.spec.mjs",
"test:plugin": "mocha test/plugin.spec.mjs",
"test:validator": "mocha test/validator.spec.mjs",
"test:wp": "mocha test/wappalyzer.spec.mjs",
"test:locale": "mocha test/locale.spec.mjs",
"test:log": "mocha test/log.spec.mjs",
"prebuild": "rimraf dist",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"build": "tsc --build",
"docs": "typedoc --out docs src/index.ts",
"prepare": "npm run build",
"release": "npm run build && npx changeset publish",
"release-snapshot": "npm run build && npx changeset version --snapshot next && npx changeset publish --tag next"
},
"keywords": [
"qualweb",
"evaluator",
"web",
"accessibility",
"a11y"
],
"homepage": "https://github.com/qualweb/core#readme",
"repository": {
"type": "git",
"url": "https://github.com/qualweb/core.git"
},
"bugs": {
"url": "https://github.com/qualweb/core/issues",
"email": "qualweb@fc.ul.pt"
},
"author": {
"name": "João Vicente",
"email": "joao.vicente@campus.ul.pt"
},
"contributors": [
{
"name": "Carlos Duarte"
},
{
"name": "Bruno Andrade"
},
{
"name": "António Estriga"
},
{
"name": "André Santos",
"url": "https://arbsantos.github.io"
}
],
"engines": {
"node": ">=12.0.0"
},
"license": "ISC",
"dependencies": {
"@qualweb/crawler": "0.3.15",
"@qualweb/dom": "0.2.6",
"@qualweb/earl-reporter": "0.4.3",
"@qualweb/evaluation": "0.3.30",
"@qualweb/locale": "0.1.12",
"colors": "1.4.0",
"puppeteer": "21.3.6",
"puppeteer-cluster": "^0.23.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@qualweb/types": "0.7.22",
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"chai": "^4.3.4",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sonarjs": "^0.12.0",
"mocha": "^9.2.1",
"node-fetch": "^3.1.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typedoc": "^0.22.12",
"typescript": "^4.5.4"
}
}