jest-watch-typeahead 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +30 -24
package/README.md CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  ### Install
16
16
 
17
- Install `jest`_(it needs Jest 23+)_ and `jest-watch-typeahead`
17
+ Install `jest`_(it needs Jest 26+)_ and `jest-watch-typeahead`
18
18
 
19
19
  ```bash
20
20
  yarn add --dev jest jest-watch-typeahead
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jest-watch-typeahead",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "main": "build/index.js",
5
5
  "author": "Rogelio Guzman <rogelioguzmanh@gmail.com>",
6
6
  "description": "Jest plugin for filtering by filename or test name",
@@ -22,35 +22,38 @@
22
22
  "prebuild": "rimraf build",
23
23
  "build": "babel src --ignore **/*.test.js,integration -d build",
24
24
  "prepublish": "yarn build",
25
- "format": "prettier --single-quote --trailing-comma all --write \"!(build)/**/*.js\""
25
+ "format": "prettier --write \"**/*.js\""
26
26
  },
27
27
  "dependencies": {
28
- "ansi-escapes": "^4.2.1",
29
- "chalk": "^3.0.0",
30
- "jest-regex-util": "^25.2.1",
31
- "jest-watcher": "^25.2.4",
28
+ "ansi-escapes": "^4.3.1",
29
+ "chalk": "^4.0.0",
30
+ "jest-regex-util": "^26.0.0",
31
+ "jest-watcher": "^26.0.0",
32
32
  "slash": "^3.0.0",
33
- "string-length": "^3.1.0",
33
+ "string-length": "^4.0.1",
34
34
  "strip-ansi": "^6.0.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@babel/cli": "^7.0.0",
38
- "@babel/core": "^7.0.0",
39
- "@babel/preset-env": "^7.0.0",
40
- "@babel/preset-flow": "^7.0.0",
41
- "babel-eslint": "^10.0.1",
42
- "babel-jest": "^25.2.4",
43
- "eslint": "^6.2.0",
44
- "eslint-config-airbnb-base": "^14.0.0",
45
- "eslint-config-prettier": "^6.1.0",
46
- "eslint-plugin-flowtype": "^4.2.0",
47
- "eslint-plugin-import": "^2.9.0",
48
- "eslint-plugin-jest": "^23.8.2",
49
- "eslint-plugin-prettier": "^3.0.1",
50
- "flow-bin": "^0.121.0",
51
- "jest": "^25.2.4",
52
- "prettier": "^1.13.7",
53
- "rimraf": "^3.0.0"
37
+ "@babel/cli": "^7.8.4",
38
+ "@babel/core": "^7.9.6",
39
+ "@babel/preset-env": "^7.9.6",
40
+ "@babel/preset-flow": "^7.9.0",
41
+ "babel-eslint": "^10.1.0",
42
+ "babel-jest": "^26.0.0",
43
+ "eslint": "^6.8.0",
44
+ "eslint-config-airbnb-base": "^14.1.0",
45
+ "eslint-config-prettier": "^6.11.0",
46
+ "eslint-plugin-flowtype": "^4.7.0",
47
+ "eslint-plugin-import": "^2.20.2",
48
+ "eslint-plugin-jest": "^23.9.0",
49
+ "eslint-plugin-prettier": "^3.1.3",
50
+ "flow-bin": "^0.123.0",
51
+ "jest": "^26.0.0",
52
+ "prettier": "2.0.5",
53
+ "rimraf": "^3.0.2"
54
+ },
55
+ "peerDependencies": {
56
+ "jest": "^26.0.0"
54
57
  },
55
58
  "jest": {
56
59
  "watchPlugins": [
@@ -68,5 +71,8 @@
68
71
  "/node_modules/",
69
72
  "/__mocks__/"
70
73
  ]
74
+ },
75
+ "engines": {
76
+ "node": ">=10"
71
77
  }
72
78
  }