-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"$schema": "http://json.schemastore.org/package",
"name": "@siteimprove/alfa-jest",
"homepage": "https://alfa.siteimprove.com",
"version": "0.76.2",
"license": "MIT",
"description": "Assertion integrations for the Jest testing framework",
"repository": {
"type": "git",
"url": "github:Siteimprove/alfa-integrations",
"directory": "packages/alfa-jest"
},
"bugs": "https://github.com/siteimprove/alfa/issues",
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"test": "yarn node --experimental-vm-modules $(yarn bin jest)"
},
"jest": {
"moduleFileExtensions": [
"js"
]
},
"dependencies": {
"@siteimprove/alfa-act": "^0.97.0",
"@siteimprove/alfa-assert": "workspace:^",
"@siteimprove/alfa-future": "^0.97.0",
"@siteimprove/alfa-hash": "^0.97.0",
"@siteimprove/alfa-mapper": "^0.97.0",
"@types/jest": "^29.5.14",
"jest": "^29.7.0"
},
"peerDependencies": {
"@siteimprove/alfa-act": "^0.97.0",
"@siteimprove/alfa-future": "^0.97.0",
"@siteimprove/alfa-hash": "^0.97.0",
"@siteimprove/alfa-mapper": "^0.97.0"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
},
"devDependencies": {
"@siteimprove/alfa-device": "^0.97.0",
"@siteimprove/alfa-dom": "^0.97.0",
"@siteimprove/alfa-http": "^0.97.0",
"@siteimprove/alfa-rules": "^0.97.0",
"@siteimprove/alfa-web": "^0.97.0"
}
}