-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "jest-expect-har",
"version": "7.0.0",
"description": "Jest matcher for asserting valid HAR definitions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .js,.ts",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"pretest": "npm run lint",
"prettier": "prettier --list-different --write \"./**/**.js\"",
"test": "jest --coverage",
"test-watch": "jest --watch"
},
"keywords": [
"jest",
"matchers",
"extend",
"extended",
"test",
"testing",
"assertions"
],
"repository": {
"type": "git",
"url": "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.13",
"har-validator": "^5.1.5"
},
"peerDependencies": {
"jest": "^29.0.2"
},
"devDependencies": {
"@readme/eslint-config": "^13.0.1",
"@types/jest": "^29.5.5",
"eslint": "^8.50.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"prettier": "@readme/eslint-config/prettier"
}