saucectl 0.177.0 → 0.179.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,11 @@
1
+ import jest from 'eslint-plugin-jest';
2
+
3
+ export default [
4
+ {
5
+ files: ['**/*.js'],
6
+ ignores: ['/bin'],
7
+ plugins: {
8
+ jest: jest,
9
+ },
10
+ },
11
+ ];
package/index.js CHANGED
@@ -4,7 +4,7 @@ const path = require('path');
4
4
  const { BinWrapper } = require('@saucelabs/bin-wrapper');
5
5
  const { Writable } = require('stream');
6
6
 
7
- const version = '0.177.0';
7
+ const version = '0.179.0';
8
8
  const defaultBinInstallBase =
9
9
  'https://github.com/saucelabs/saucectl/releases/download';
10
10
  const binWrapper = (binInstallURL = null, binInstallBase = null) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saucectl",
3
- "version": "0.177.0",
3
+ "version": "0.179.0",
4
4
  "description": "Node.js wrapper for saucectl",
5
5
  "main": "index.js",
6
6
  "bin": "index.js",
@@ -39,19 +39,19 @@
39
39
  "node": ">=16.13.2"
40
40
  },
41
41
  "dependencies": {
42
- "@saucelabs/bin-wrapper": "^2.0.0"
42
+ "@saucelabs/bin-wrapper": "^2.1.0"
43
43
  },
44
44
  "devDependencies": {
45
- "eslint": "^8.51.0",
46
- "eslint-config-prettier": "^9.0.0",
47
- "eslint-plugin-jest": "^27.4.2",
48
- "eslint-plugin-prettier": "^5.0.1",
45
+ "eslint": "^9.4.0",
46
+ "eslint-config-prettier": "^9.1.0",
47
+ "eslint-plugin-jest": "^28.6.0",
48
+ "eslint-plugin-prettier": "^5.1.3",
49
49
  "jest": "^29.7.0",
50
- "np": "^8.0.4",
50
+ "np": "8.0.4",
51
51
  "npm-run-all": "^4.1.5",
52
- "prettier": "^3.0.3",
52
+ "prettier": "^3.3.1",
53
53
  "replace-in-files-cli": "^2.2.0",
54
- "rimraf": "^5.0.5",
55
- "ts-jest": "^29.1.1"
54
+ "rimraf": "^5.0.7",
55
+ "ts-jest": "^29.1.4"
56
56
  }
57
57
  }