-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 3.05 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
{
"name": "accessible-name-automation-proof-of-concept",
"description": "This is an experiment based on Accessibility Object Model (AOM). It tries to demonstrate that it is theoretically possible (in a certain way) to predict what the screen reader will say by focusing on semantic and non semantic elements with a bit of automated testing, thus reducing the need for manual testing.",
"license": "UNLICENSED",
"author": "Jonathan Linat <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/jonathanlinat/accessible-name-automation-proof-of-concept"
},
"version": "1.2.0",
"scripts": {
"build": "run-s \"subscript:build\" \"subscript:copy:test-report\"",
"format": "prettier -w src",
"lint": "eslint -c eslint.config.json --format table --fix src",
"review:report": "http-server -o test-report.html",
"start:dev": "npm run subscript:webpack-dev-server -- --open",
"start:ci": "npm run subscript:webpack-dev-server -- --no-info",
"test:a11y:violations": "npm run subscript:start-server-and-test subscript:pa11y-ci",
"test:a11y:accessiblename": "npm run subscript:start-server-and-test subscript:jest",
"test:a11y:accessiblename:watch": "npm run subscript:start-server-and-test subscript:jest:watch",
"subscript:build": "webpack --progress --color --mode production",
"subscript:copy:test-report": "shx cp test-report.html dist/test-report.html",
"subscript:jest": "jest",
"subscript:jest:watch": "jest --watch",
"subscript:pa11y-ci": "pa11y-ci -c pa11y-ci.config.json",
"subscript:start-server-and-test": "start-server-and-test start:ci http-get://localhost:8080",
"subscript:webpack-dev-server": "webpack-dev-server --color --mode development"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/preset-env": "7.14.7",
"@babel/preset-react": "7.14.5",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
"dynamic-cdn-webpack-plugin": "5.0.0",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-react": "11.0.1",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-standard": "4.1.0",
"html-loader": "1.3.1",
"html-webpack-plugin": "4.5.0",
"http-server": "0.12.3",
"jest": "27.0.5",
"jest-html-reporter": "3.4.1",
"jest-puppeteer": "5.0.4",
"module-to-cdn": "3.1.5",
"npm-run-all": "4.1.5",
"pa11y-ci": "2.4.1",
"prettier": "2.3.1",
"puppeteer": "10.0.0",
"shx": "0.3.3",
"start-server-and-test": "1.12.5",
"terser-webpack-plugin": "4.2.2",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.2"
},
"dependencies": {
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-syntax-highlighter": "13.5.3",
"styled-components": "5.3.0",
"styled-reset": "4.3.4"
}
}