-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
105 lines (105 loc) · 3.27 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@guidepup/virtual-screen-reader",
"version": "0.28.0",
"description": "Virtual Screen Reader driver for unit test automation.",
"author": "Craig Morten <craig.morten@hotmail.co.uk>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/guidepup/virtual-screen-reader"
},
"bugs": {
"url": "https://github.com/guidepup/virtual-screen-reader/issues"
},
"homepage": "https://github.com/guidepup/virtual-screen-reader",
"keywords": [
"screen reader",
"screen-reader",
"accessibility",
"a11y",
"guidepup"
],
"main": "./lib/cjs/index.js",
"types": "./lib/cjs/index.d.ts",
"module": "./lib/esm/index.legacy-esm.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./lib/esm/index.d.mts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.cjs"
}
},
"./browser.js": {
"unpkg": "./lib/esm/index.browser.js",
"browser": "./lib/esm/index.browser.js",
"import": "./lib/esm/index.browser.js",
"default": "./lib/esm/index.browser.js"
}
},
"sideEffects": false,
"scripts": {
"build": "yarn clean && yarn compile",
"ci": "yarn clean && yarn lint && yarn test:coverage && yarn build && yarn types:test",
"clean": "rimraf lib",
"compile": "tsup",
"lint": "eslint src test --cache",
"lint:fix": "yarn lint --fix",
"prepublish": "yarn build",
"test": "jest",
"test:coverage": "yarn test --coverage",
"types:test": "attw --pack . --exclude-entrypoints browser.js",
"wpt:hosts": "./test/wpt/wpt make-hosts-file | sudo tee -a /etc/hosts",
"wpt:init": "git submodule update --init --recursive",
"wpt:reset": "rimraf ./test/wpt && yarn wpt:init",
"wpt:test": "ts-mocha -p ./tsconfig.test.json ./test/wpt-jsdom/run-wpts.js",
"wpt:update": "yarn wpt:init --remote && cd test/wpt && python wpt.py manifest --path ../wpt-jsdom/wpt-manifest.json"
},
"dependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/user-event": "^14.5.2",
"aria-query": "^5.3.0",
"dom-accessibility-api": "^0.7.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.2",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/expect": "^24.3.0",
"@types/jest": "^29.5.12",
"@types/json-schema": "^7.0.15",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.5",
"@types/prop-types": "^15.7.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/scheduler": "^0.23.0",
"@types/semver": "^7.5.8",
"chalk": "^4.0.0",
"css.escape": "^1.5.1",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"js-yaml": "^4.1.0",
"jsdom": "^25.0.0",
"minimatch": "^9.0.5",
"mocha": "^10.7.0",
"mocha-sugar-free": "^1.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.7",
"ts-jest": "^29.2.3",
"ts-jest-resolver": "^2.0.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.2.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.5.0"
}
}