Files
appium/package.json
bootstraponline 5965ef39fd Android mobile :reset now uses adb uninstall/pm install
The old clean.apk approach to resetting state doesn't work well. Using
instrumentation means the app is running when the data is deleted. It's better
to use the standard adb install/uninstall commands.

To make this faster, the apk is pushed to the device once (/data/local/tmp/) and
then installed from that location on each reset. Using the regular adb install
command is slow due to the file transfer speed.

Before uninstalling the app, it's stopped to prevent crashes. Some apps don't
like to be uninstalled while running.
2013-10-09 15:21:21 -04:00

92 lines
2.0 KiB
JSON

{
"name": "appium",
"description": "Automation for Apps.",
"tags": [
"automation",
"javascript",
"selenium",
"webdriver",
"ios",
"android",
"firefoxos",
"testing"
],
"version": "0.10.1",
"author": "appium-discuss@googlegroups.com",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium.git"
},
"bugs": {
"url": "https://github.com/appium/appium/issues"
},
"engines": [
"node"
],
"main": "./server.js",
"bin": {
"appium": "./app/bin.js",
"instruments_client": "./instruments/client_bin.js",
"authorize_ios": "./app/authorize.js"
},
"directories": {
"lib": "./app",
"doc": "./docs"
},
"dependencies": {
"underscore": "~1.4.3",
"colors": "~0.6.0-1",
"express": "~3.0.6",
"grunt": "~0.4.0",
"grunt-cli": "~0.1.6",
"argparse": "~0.1.10",
"path": "~0.4.9",
"rimraf": "~2.1.1",
"uuid-js": "~0.7.4",
"temp": "~0.5.0",
"winston": "~0.6.2",
"request": "~2.12.0",
"bplist-parser": "~0.0.4",
"plist": "~0.4.1",
"bufferpack": "0.0.6",
"bplist-creator": "~0.0.2",
"node-uuid": "~1.4.0",
"underscore.string": "~2.3.1",
"glob": "~3.1.20",
"unzip": "~0.1.1",
"ncp": "~0.4.2",
"swig": "~0.13.5",
"async": "~0.2.6",
"mkdirp": "~0.3.5",
"xml2js": "~0.2.6",
"difflib": "~0.2.4",
"prompt": "~0.2.9",
"binary-cookies": "~0.1.1",
"namp": "~0.2.25",
"node-idevice": "~0.1.2",
"win-spawn" : "~1.1.1",
"adm-zip" : "~0.4.3",
"ws": "0.4.25",
"socket.io" : "~0.9.14",
"MD5" : "~1.1.0",
"through": "~2.3.4"
},
"scripts": {
"test": "grunt travis"
},
"devDependencies": {
"mocha": "~1.8.1",
"should": "~1.2.1",
"underscore-cli": "~0.2.17",
"wd": "~0.1.4",
"yiewd": "~0.0.15",
"monocle-js": "~0.1.4",
"assert": "~0.4.9",
"grunt-mocha-test": "~0.2.0",
"grunt-contrib-jshint": "~0.1.1",
"saucelabs": "~0.0.7",
"socket.io-client": "~0.9.11",
"socks": "~0.0.1"
}
}