-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.99 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
{
"name": "@guidepup/jest",
"version": "0.5.2",
"description": "Virtual Screen Reader Jest Matchers",
"author": "Craig Morten <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/guidepup/jest"
},
"bugs": {
"url": "https://github.com/guidepup/jest/issues"
},
"homepage": "https://github.com/guidepup/jest",
"keywords": [
"screen-reader",
"accessibility",
"a11y",
"jest"
],
"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"
}
}
},
"sideEffects": true,
"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 . --ext .ts --cache",
"lint:fix": "yarn lint --fix",
"prepublish": "yarn build",
"test": "jest",
"test:coverage": "yarn test --coverage",
"types:test": "attw --pack"
},
"dependencies": {
"jest-snapshot": "^29.7.0"
},
"peerDependencies": {
"@guidepup/virtual-screen-reader": ">=0.26.0",
"jest": ">=29"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.2",
"@guidepup/virtual-screen-reader": "^0.28.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^5.0.7",
"ts-jest": "^29.2.5",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.6.2"
}
}