forked from helen-dikareva/axe-testcafe
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 973 Bytes
/
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
{
"name": "@testcafe-community/axe",
"version": "0.0.0",
"description": "The TestCafe module that allows you to use the aXe accessibility engine in TestCafe tests",
"main": "index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/testcafe-community/axe"
},
"engines": {
"node": ">=8.9.0"
},
"keywords": [
"axe",
"testcafe",
"test",
"accessibility"
],
"author": "Helen Dikareva ([email protected]), Ben Monro ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/testcafe-community/axe/issues"
},
"homepage": "https://github.com/testcafe-community/axe",
"files": [
"index.js",
"index.d.ts"
],
"peerDependencies": {
"axe-core": ">=2.2.3 <=5",
"testcafe": "*"
},
"dependencies": {
"chalk": "^2.4.1"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"axe-core": "^4.1.1"
}
}