-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.6 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
{
"name": "jest-expect-har",
"version": "7.1.1",
"description": "Jest/Vitest matcher for asserting valid HAR definitions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .js,.ts && npm run prettier && tsc",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"pretest": "npm run lint",
"prettier": "prettier --check .",
"test": "npm run test:jest && npm run test:vitest",
"test:jest": "jest --coverage",
"test:vitest": "vitest run --coverage"
},
"keywords": [
"jest",
"vitest",
"har",
"matchers",
"expect",
"extend",
"extended",
"test",
"testing",
"assertions"
],
"repository": {
"type": "git",
"url": "git+https://github.com/readmeio/jest-expect-har.git"
},
"bugs": {
"url": "https://github.com/readmeio/jest-expect-har/issues"
},
"author": "Jon Ursenbach <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@types/har-format": "^1.2.14",
"har-validator": "^5.1.5"
},
"peerDependencies": {
"jest": "^29.0.2",
"vitest": "^2.0.5"
},
"peerDependenciesMeta": {
"jest": {
"optional": true
},
"vitest": {
"optional": true
}
},
"devDependencies": {
"@readme/eslint-config": "^14.0.0",
"@types/jest": "^29.5.7",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vitest": "^2.0.5"
},
"prettier": "@readme/eslint-config/prettier"
}