-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.23 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "jest-retry-all-hooks",
"version": "1.0.0",
"description": "Patch `beforeAll` and `afterAll` hooks to work with `jest.retryTimes`.",
"main": "index.js",
"types": "dist/index.d.ts",
"files": [
"README.md",
"src",
"dist",
"*.js",
"*.mjs",
"!.*.js",
"!jest.config.js",
"!**/__utils__",
"!**/__tests__",
"!**/*.test.*"
],
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=16.14.0"
},
"scripts": {
"prepare": "husky install || true",
"prepack": "tsc",
"build": "tsc",
"lint": "eslint . --fix",
"lint:ci": "eslint .",
"lint:staged": "lint-staged",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix-incubator/jest-retry-all-hooks.git"
},
"keywords": [
"jest",
"jest-environment",
"jest-environment-emit",
"jest-circus"
],
"author": "Yaroslav Serhieiev <yaroslavs@wix.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wix-incubator/jest-retry-all-hooks/issues"
},
"homepage": "https://github.com/wix-incubator/jest-retry-all-hooks#readme",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-ecmascript-compat": "^3.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-unicorn": "^50.0.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-environment-emit": "^1.0.5",
"lint-staged": "^15.2.0",
"lodash": "^4.17.21",
"prettier": "^3.1.1",
"semantic-release": "^22.0.12",
"ts-jest": "^29.1.1",
"typescript": "~5.2.0"
},
"browserslist": [
"node 16"
]
}