-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "a11y-analyzer",
"version": "1.0.0",
"description": "A tool to test accessibility with Cypress.",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"test": "npm run test:e2e:ci",
"start": "http-server public",
"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"
},
"keywords": [
"a11y",
"accessibility",
"axe",
"axe-core",
"cypress",
"cypress-axe"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GuiSAlmeida/a11y-analyzer.git"
},
"author": "Guilherme Almeida <[email protected]> (https://guisalmeida.com/)",
"license": "MIT",
"devDependencies": {
"axe-core": "^4.5.0",
"cypress": "^10.3.0",
"cypress-axe": "^1.0.0",
"cypress-terminal-report": "^4.1.1",
"http-server": "^14.1.1",
"start-server-and-test": "^1.14.0"
}
}