-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "jest-network-mock",
"version": "2.0.1",
"description": "NetworkInformation API mock for Jest",
"repository": "github:suiyun39/jest-network-mock",
"license": "MIT",
"keywords": [
"jest",
"jest-mock",
"jsdom"
],
"type": "module",
"packageManager": "pnpm@8.15.4",
"scripts": {
"build": "tsc && tsup",
"lint": "eslint .",
"test": "jest",
"prepare": "husky"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.26",
"eslint": "^8.57.0",
"eslint-config-rakko": "^1.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
}
}