-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.12 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
{
"name": "cypress-axe-core",
"version": "0.0.0-development",
"license": "MIT",
"description": "Test accessibility with axe-core in Cypress",
"homepage": "https://github.com/mcha-dev/cypress-axe-core",
"repository": {
"type": "git",
"url": "https://github.com/mcha-dev/cypress-axe-core.git"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --cache --fix",
"commit": "git-cz",
"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",
"test:e2e": "start-server-and-test start 8080 cypress",
"test:e2e:ci": "start-server-and-test start 8080 cypress:headless",
"semantic-release": "semantic-release --branches main",
"prepare": "husky install"
},
"engines": {
"node": ">=14"
},
"peerDependencies": {
"axe-core": ">=3",
"cypress": ">=3"
},
"devDependencies": {
"@types/node": "^17.0.42",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"axe-core": "^4",
"cypress": "^10",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.17.0",
"eslint-config-tamia": "^8.0.0",
"http-server": "^14.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"prettier": "^2.6.2",
"semantic-release": "^19.0.3",
"start-server-and-test": "^1.14.0",
"typescript": "^4.7.3"
},
"authors": [
{
"name": "Andy Van Slaars",
"url": "https://vanslaars.io"
},
{
"name": "Artem Sapegin",
"url": "https://sapegin.me"
}
],
"keywords": [
"a11y",
"accessibility",
"axe",
"axe-core",
"cypress"
],
"lint-staged": {
"**/*.{js,ts}": "eslint --cache --fix",
"**/*.{js,ts,md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}