-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 1.86 KB
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
{
"name": "@axe-core/cli",
"version": "4.11.2",
"description": "A CLI for accessibility testing using axe-core",
"author": {
"name": "Wilco Fiers",
"organization": "Deque Systems, Inc.",
"url": "http://github.com/wilcofiers/"
},
"contributors": [
{
"name": "Michael Siek (me@michaelsiek.com)"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dequelabs/axe-core-npm.git"
},
"license": "MPL-2.0",
"files": [
"dist",
"postinstall.js"
],
"main": "dist/src/lib/index.js",
"typings": "dist/src/types.d.ts",
"bin": {
"axe": "./dist/src/bin/cli.js"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "mocha --timeout 60000 -r ts-node/register 'src/**/**.test.ts'",
"coverage": "nyc npm run test"
},
"keywords": [
"axe-core",
"accessibility",
"a11y",
"wcag",
"cli",
"testing"
],
"dependencies": {
"@axe-core/webdriverjs": "^4.11.2",
"axe-core": "~4.11.4",
"chromedriver": "latest",
"colors": "^1.4.0",
"commander": "^9.4.1",
"selenium-webdriver": "~4.41.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/chromedriver": "^81.0.1",
"@types/mocha": "^10.0.0",
"@types/selenium-webdriver": "^4.1.5",
"@types/sinon": "^21.0.0",
"chai": "^4.3.6",
"execa": "5.1.1",
"mocha": "^11.7.1",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"sinon": "^21.0.0",
"tempy": "^1.0.0"
},
"nyc": {
"checkCoverage": true,
"extension": [
".ts"
],
"reporter": [
"text-summary",
"html"
],
"statements": 95,
"branches": 91,
"functions": 94,
"lines": 95,
"exclude": [
"dist",
"coverage",
"**/*.test.ts",
"src/testutils"
]
}
}