appium-remote-debugger 8.13.2 → 9.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,8 @@
1
1
  import log from '../logger';
2
- import { errors } from 'appium-base-driver';
2
+ import { errors } from '@appium/base-driver';
3
3
  import { checkParams, simpleStringify, convertResult, RESPONSE_LOG_LENGTH } from '../utils';
4
4
  import { getScriptForAtom } from '../atoms';
5
- import { util, timing } from 'appium-support';
5
+ import { util, timing } from '@appium/support';
6
6
  import { retryInterval } from 'asyncbox';
7
7
  import _ from 'lodash';
8
8
 
@@ -1,7 +1,7 @@
1
1
  import log from '../logger';
2
2
  import { checkParams } from '../utils';
3
3
  import events from './events';
4
- import { timing, util } from 'appium-support';
4
+ import { timing, util } from '@appium/support';
5
5
  import _ from 'lodash';
6
6
  import B from 'bluebird';
7
7
 
@@ -4,7 +4,7 @@ import log from '../logger';
4
4
  import _ from 'lodash';
5
5
  import B from 'bluebird';
6
6
  import RpcMessageHandler from './rpc-message-handler';
7
- import { util, timing } from 'appium-support';
7
+ import { util, timing } from '@appium/support';
8
8
 
9
9
 
10
10
  const DATA_LOG_LENGTH = {length: 200};
@@ -1,6 +1,6 @@
1
1
  import log from '../logger';
2
2
  import _ from 'lodash';
3
- import { util } from 'appium-support';
3
+ import { util } from '@appium/support';
4
4
  import EventEmitters from 'events';
5
5
 
6
6
 
package/lib/utils.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import log from './logger';
2
2
  import _ from 'lodash';
3
3
  import B from 'bluebird';
4
- import { errorFromMJSONWPStatusCode } from 'appium-base-driver';
5
- import { util } from 'appium-support';
4
+ import { errorFromMJSONWPStatusCode } from '@appium/base-driver';
5
+ import { util } from '@appium/support';
6
6
 
7
7
 
8
8
  const WEB_CONTENT_BUNDLE_ID = 'com.apple.WebKit.WebContent';
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "keywords": [
5
5
  "appium"
6
6
  ],
7
- "version": "8.13.2",
7
+ "version": "9.0.2",
8
8
  "author": "appium",
9
9
  "license": "Apache-2.0",
10
10
  "repository": {
@@ -30,15 +30,15 @@
30
30
  "atoms"
31
31
  ],
32
32
  "dependencies": {
33
+ "@appium/base-driver": "^8.5.2",
34
+ "@appium/support": "^2.55.3",
33
35
  "@babel/runtime": "^7.0.0",
34
- "appium-base-driver": "^7.0.0",
35
- "appium-ios-device": "^1.7.0",
36
- "appium-support": "^2.41.0",
36
+ "appium-ios-device": "^2.0.0",
37
37
  "async-lock": "^1.2.2",
38
38
  "asyncbox": "^2.6.0",
39
39
  "bluebird": "^3.4.7",
40
40
  "lodash": "^4.17.11",
41
- "source-map-support": "^0.5.5"
41
+ "source-map-support": "^0.x"
42
42
  },
43
43
  "scripts": {
44
44
  "prepare": "gulp prepublish",
@@ -63,20 +63,22 @@
63
63
  "precommit-test"
64
64
  ],
65
65
  "devDependencies": {
66
- "appium-gulp-plugins": "^5.4.0",
67
- "appium-ios-simulator": "^3.10.0",
66
+ "@appium/gulp-plugins": "^6.0.0",
67
+ "@appium/eslint-config-appium": "^5.0.0",
68
+ "@semantic-release/git": "^10.0.1",
69
+ "appium-ios-simulator": "^4.0.0",
68
70
  "chai": "^4.1.2",
69
71
  "chai-as-promised": "^7.1.1",
70
- "eslint-config-appium": "^4.5.0",
71
- "fancy-log": "^1.3.3",
72
+ "fancy-log": "^2.0.0",
72
73
  "finalhandler": "^1.1.2",
73
74
  "gulp": "^4.0.0",
74
- "mocha": "^8.0.1",
75
+ "mocha": "^10.0.0",
75
76
  "mocha-junit-reporter": "^2.0.0",
76
77
  "mocha-multi-reporters": "^1.5.1",
77
- "node-simctl": "^6.0.2",
78
+ "node-simctl": "^7.0.1",
78
79
  "pre-commit": "^1.1.3",
79
80
  "serve-static": "^1.14.1",
80
- "sinon": "^9.2.1"
81
+ "semantic-release": "^19.0.2",
82
+ "sinon": "^13.0.0"
81
83
  }
82
84
  }