-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpackage.json
76 lines (76 loc) · 1.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
{
"name": "cypress-axe",
"version": "1.2.0",
"license": "MIT",
"description": "Test accessibility with axe-core in Cypress",
"homepage": "https://github.com/component-driven/cypress-axe",
"repository": "component-driven/cypress-axe",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --cache --fix",
"pretest": "npm run lint",
"test": "npm run test:e2e:ci",
"posttest": "npm run format",
"format": "prettier --loglevel warn --write \"**/*.{js,md}\"",
"prepublishOnly": "npm run build",
"start": "http-server test",
"cypress": "cypress open",
"cypress:headless": "cypress run --browser chrome --headless",
"test:e2e": "start-server-and-test start 8080 cypress",
"test:e2e:ci": "start-server-and-test start 8080 cypress:headless"
},
"engines": {
"node": ">=10"
},
"dependencies": {},
"peerDependencies": {
"axe-core": "^3 || ^4",
"cypress": "^10 || ^11 || ^12 || ^13"
},
"devDependencies": {
"@types/node": "^14.14.8",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"axe-core": "^4.0.2",
"cypress": "^10.1.0",
"eslint": "^7.12.0",
"eslint-config-tamia": "^7.2.6",
"http-server": "^0.12.3",
"husky": "^4.3.0",
"lint-staged": "^10.5.0",
"prettier": "^2.1.2",
"start-server-and-test": "^1.11.5",
"typescript": "^4.0.5"
},
"authors": [
{
"name": "Andy Van Slaars",
"url": "https://vanslaars.io"
},
{
"name": "Artem Sapegin",
"url": "https://sapegin.me"
}
],
"keywords": [
"a11y",
"accessibility",
"axe",
"axe-core",
"cypress"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md}": "prettier --write"
}
}