Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More

node-simctl

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-simctl - npm Package Compare versions

Comparing version 3.15.0 to 3.16.0

@@ -95,3 +95,3 @@ import { exec, SubProcess } from 'teen_process';

async function simSubProcess (command, timeout, args = [], env = {}) {
return await simCommand(command, timeout, args, env, async (c, a, ob) => {
return await simCommand(command, timeout, args, env, (c, a, ob) => {
return new SubProcess(c, a, ob);

@@ -531,3 +531,3 @@ });

devices = {};
for (let [sdkName, entries] of _.toPairs(JSON.parse(stdout).devices)) {
for (let [sdkName, entries] of _.toPairs(JSON.parse(stdout).devices)) {
if (sdkName.indexOf('iOS') !== 0) {

@@ -687,6 +687,7 @@ continue;

export { installApp, removeApp, launch, spawn, spawnSubProcess, openUrl,
terminate, shutdown, createDevice, getAppContainer, getScreenshot,
deleteDevice, eraseDevice, getDevices, getRuntimeForPlatformVersion,
bootDevice, setPasteboard, getPasteboard, addMedia, appInfo,
getDeviceTypes };
export {
installApp, removeApp, launch, spawn, spawnSubProcess, openUrl, terminate,
shutdown, createDevice, getAppContainer, getScreenshot, deleteDevice,
eraseDevice, getDevices, getRuntimeForPlatformVersion, bootDevice,
setPasteboard, getPasteboard, addMedia, appInfo, getDeviceTypes,
};

@@ -9,3 +9,3 @@ {

],
"version": "3.15.0",
"version": "3.16.0",
"author": "https://github.com/appium",

@@ -28,7 +28,11 @@ "license": "Apache-2.0",

},
"files": [
"lib",
"build/lib"
],
"dependencies": {
"@babel/runtime": "^7.0.0",
"appium-support": "^2.4.0",
"appium-xcode": "^3.1.0",
"asyncbox": "^2.3.1",
"babel-runtime": "=5.8.24",
"lodash": "^4.2.1",

@@ -40,3 +44,3 @@ "source-map-support": "^0.5.5",

"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
"prepublish": "gulp prepublish",
"prepare": "gulp prepublish",
"test": "gulp once",

@@ -57,14 +61,15 @@ "watch": "gulp watch",

"devDependencies": {
"appium-gulp-plugins": "^2.2.1",
"babel-eslint": "^7.1.1",
"ajv": "^6.5.3",
"appium-gulp-plugins": "^3.1.0",
"babel-eslint": "^10.0.0",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^3.10.2",
"eslint-config-appium": "^2.1.0",
"eslint-plugin-babel": "^3.3.0",
"eslint": "^5.2.0",
"eslint-config-appium": "^3.1.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-promise": "^3.3.1",
"gulp": "^3.9.0",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-promise": "^4.0.0",
"gulp": "^4.0.0",
"mocha": "^5.1.1",

@@ -74,14 +79,4 @@ "pre-commit": "^1.1.3"

"greenkeeper": {
"ignore": [
"babel-eslint",
"babel-preset-env",
"eslint",
"eslint-plugin-babel",
"eslint-plugin-import",
"eslint-plugin-mocha",
"eslint-plugin-promise",
"gulp",
"babel-runtime"
]
"ignore": []
}
}

Sorry, the diff of this file is too big to display