forked from appium/appium-uiautomator2-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "appium-uiautomator2-driver",
"description": "UiAutomator2 integration for Appium",
"keywords": [
"appium",
"uiautomator2",
"automated testing",
"android"
],
"version": "1.1.0",
"author": "appium",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-uiautomator2-driver.git"
},
"bugs": {
"url": "https://github.com/appium/appium-uiautomator2-driver/issues"
},
"engines": [
"node"
],
"main": "./build/index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"dependencies": {
"adbkit": "^2.4.1",
"appium-adb": "^5.3.1",
"appium-android-driver": "^1.35.0",
"appium-base-driver": "^2.18.4",
"appium-support": "^2.12.0",
"appium-uiautomator2-server": "1.x",
"asyncbox": "^2.3.1",
"babel-runtime": "=5.8.24",
"bluebird": "^2.10.2",
"lodash": "^4.17.4",
"portscanner": "2.1.1",
"request": "^2.81.0",
"request-promise": "^4.1.1",
"source-map-support": "^0.3.2",
"teen_process": "^1.3.1",
"utf7": "^1.0.0",
"yargs": "^8.0.2"
},
"scripts": {
"prepublish": "rimraf build && gulp prepublish",
"transpile": "gulp transpile",
"build": "gulp transpile",
"test": "gulp once",
"e2e-test": "gulp e2e-test",
"watch": "gulp watch",
"mocha": "mocha",
"coverage": "gulp coveralls",
"lint": "gulp eslint",
"lint:fix": "gulp eslint --fix",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"e2e": "gulp transpile && mocha -t 6400000 -R spec build/test/functional/helpers/mocha-scripts.js build/test/functional/**/*-specs.js build/test/functional/*-specs.js",
"e2e:find": "gulp transpile && mocha -t 6400000 -R spec build/test/functional/helpers/mocha-scripts.js build/test/functional/commands/find/*-specs.js",
"e2e:keyboard": "gulp transpile && mocha -t 6400000 -R spec build/test/functional/helpers/mocha-scripts.js build/test/functional/commands/keyboard/*-specs.js",
"e2e:commands": "gulp transpile && mocha -t 6400000 -R spec build/test/functional/helpers/mocha-scripts.js build/test/functional/commands/*-specs.js",
"e2e:testobject": "cross-env TESTOBJECT_E2E_TESTS=true npm run e2e"
},
"pre-commit": [
"precommit-msg",
"test"
],
"devDependencies": {
"android-apidemos": "^2.1.2",
"appium-gulp-plugins": "^2.2.1",
"appium-test-support": "^0.7.0",
"babel-eslint": "^7.1.1",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"eslint": "^3.10.2",
"eslint-config-appium": "^2.1.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-promise": "^3.3.1",
"gps-demo-app": "^1.0.0",
"gulp": "^3.9.0",
"pngjs": "^3.3.1",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.1",
"sinon": "^1.17.2",
"unzip": "^0.1.11",
"wd": "^1.4.0",
"xmldom": "^0.1.19",
"xpath": "^0.0.22"
}
}