forked from patternfly/patternfly-a11y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.13 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
{
"name": "@patternfly/patternfly-a11y",
"version": "4.2.2",
"description": "Accessibility utilities for PatternFly.",
"scripts": {
"test": "node cli.js --prefix http://localhost:9000 --file ~/src/gatsby-theme-patternfly-org/patternfly-org-demo/.cache/fullscreenPages.json",
"start": "webpack-dev-server --config ./test/app/webpack.config.js --open",
"dev": "yarn copy && webpack-dev-server --config ./report/webpack.config.js",
"build": "yarn copy && webpack --config ./report/webpack.config.js --mode production",
"copy": "mkdir -p report/public && cp -R coverage/screenshots report/public/screenshots && cp coverage/results.json report/public/results.json",
"clean": "rm -rf coverage && rm -rf ./report/coverage",
"test:pf": "yarn clean && ./cli.js --config test/pf-config.js",
"test:os": "yarn clean && ./cli.js --config test/os-config.js",
"test:koku": "yarn clean && ./cli.js --config test/koku-config.js",
"test:console": "yarn clean && ./cli.js --config test/console-config.js",
"test:cli": "node cli.js https://pf4.patternfly.org/components/alert"
},
"repository": {
"type": "git",
"url": "https://github.com/patternfly/patternfly-a11y.git"
},
"author": "Red Hat",
"license": "MIT",
"bin": {
"patternfly-a11y": "cli.js"
},
"dependencies": {
"axe-core": "^4.4.1",
"chromedriver": "^101.0.0",
"commander": "^5.1.0",
"fs-extra": "^10.0.0",
"junit-xml": "^1.2.0",
"puppeteer": "^14.2.0",
"puppeteer-cluster": "^0.23.0",
"xmldoc": "^1.1.2"
},
"devDependencies": {
"@patternfly/react-charts": "^6.0.0",
"@patternfly/react-core": "^4.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^4.0.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^5.0.0",
"mini-css-extract-plugin": "^2.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"ts-loader": "^9.0.0",
"typescript": "^4.0.0",
"url-loader": "^4.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^4.0.0"
}
}