jest-watch-typeahead 2.0.0 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1) hide show
  1. package/package.json +15 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jest-watch-typeahead",
3
- "version": "2.0.0",
3
+ "version": "2.2.0",
4
4
  "main": "build/index.js",
5
5
  "exports": {
6
6
  ".": "./build/index.js",
@@ -26,16 +26,16 @@
26
26
  "test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest",
27
27
  "lint": "eslint .",
28
28
  "prebuild": "rimraf build",
29
- "build": "babel --extensions .js,.ts src -d build && rimraf **/*.test.{js,ts},integration build/**/__tests__ build/test_utils",
30
- "prepublish": "yarn build",
29
+ "build": "babel --extensions .js,.ts src -d build && rimraf 'build/**/*.test.{js,ts},integration' 'build/**/__tests__' build/test_utils",
30
+ "prepack": "yarn build",
31
31
  "format": "prettier --write \"**/*.js\" \"**/*.md\" \"**/*.ts\"",
32
32
  "typecheck": "yarn tsc -p ."
33
33
  },
34
34
  "dependencies": {
35
35
  "ansi-escapes": "^5.0.0",
36
36
  "chalk": "^4.0.0",
37
- "jest-regex-util": "^28.0.0",
38
- "jest-watcher": "^28.0.0",
37
+ "jest-regex-util": "^29.0.0",
38
+ "jest-watcher": "^29.0.0",
39
39
  "slash": "^4.0.0",
40
40
  "string-length": "^5.0.1",
41
41
  "strip-ansi": "^7.0.1"
@@ -45,25 +45,24 @@
45
45
  "@babel/core": "^7.9.6",
46
46
  "@babel/preset-env": "^7.9.6",
47
47
  "@babel/preset-typescript": "^7.10.4",
48
- "@jest/globals": "^28.0.0",
49
- "@jest/types": "^28.0.0",
48
+ "@jest/globals": "^29.0.0",
49
+ "@jest/types": "^29.0.0",
50
50
  "@semantic-release/changelog": "^6.0.1",
51
51
  "@semantic-release/git": "^10.0.1",
52
- "@types/jest": "^28.0.0",
53
52
  "@types/node": "^16.0.0",
54
53
  "@typescript-eslint/eslint-plugin": "^5.0.0",
55
54
  "@typescript-eslint/parser": "^5.0.0",
56
- "babel-jest": "^28.0.0",
55
+ "babel-jest": "^29.0.0",
57
56
  "babel-plugin-add-import-extension": "^1.6.0",
58
57
  "cross-env": "^7.0.3",
59
58
  "eslint": "^8.0.0",
60
59
  "eslint-config-airbnb-base": "^15.0.0",
61
60
  "eslint-config-prettier": "^8.0.0",
62
61
  "eslint-plugin-import": "^2.20.2",
63
- "eslint-plugin-jest": "^26.0.0",
62
+ "eslint-plugin-jest": "^27.0.0",
64
63
  "eslint-plugin-prettier": "^4.0.0",
65
- "jest": "^28.0.0",
66
- "jest-serializer-ansi-escapes": "^1.0.1",
64
+ "jest": "^29.0.0",
65
+ "jest-serializer-ansi-escapes": "^2.0.1",
67
66
  "prettier": "^2.1.1",
68
67
  "rimraf": "^3.0.2",
69
68
  "semantic-release": "^19.0.3",
@@ -71,7 +70,7 @@
71
70
  "typescript": "^4.0.2"
72
71
  },
73
72
  "peerDependencies": {
74
- "jest": "^27.0.0 || ^28.0.0"
73
+ "jest": "^27.0.0 || ^28.0.0 || ^29.0.0"
75
74
  },
76
75
  "jest": {
77
76
  "extensionsToTreatAsEsm": [
@@ -81,6 +80,7 @@
81
80
  "<rootDir>/filename",
82
81
  "<rootDir>/testname"
83
82
  ],
83
+ "injectGlobals": false,
84
84
  "snapshotSerializers": [
85
85
  "jest-serializer-ansi-escapes"
86
86
  ],
@@ -108,5 +108,6 @@
108
108
  "@semantic-release/git",
109
109
  "@semantic-release/github"
110
110
  ]
111
- }
111
+ },
112
+ "packageManager": "yarn@3.2.3"
112
113
  }