forked from appium/appium-xcuitest-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.38 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
94
95
{
"name": "appium-xcuitest-driver",
"description": "Appium driver for iOS using XCUITest for backend",
"keywords": [
"appium",
"ios",
"webdriveragent",
"xcuitest",
"xctest"
],
"version": "2.79.1",
"author": "appium",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-xcuitest-driver.git"
},
"bugs": {
"url": "https://github.com/appium/appium-xcuitest-driver/issues"
},
"engines": [
"node"
],
"main": "./build/index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"dependencies": {
"appium-base-driver": "^2.28.0",
"appium-ios-driver": "^2.2.1",
"appium-ios-simulator": "^2.9.0",
"appium-remote-debugger": "^3.10.0",
"appium-support": "^2.13.0",
"appium-xcode": "^3.2.0",
"async-lock": "^1.0.0",
"asyncbox": "^2.3.1",
"babel-runtime": "=5.8.24",
"bluebird": "^3.1.1",
"js2xmlparser2": "^0.2.0",
"lodash": "^4.0.0",
"node-simctl": "^3.10.0",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"source-map-support": "^0.5.5",
"teen_process": "^1.7.1",
"uuid-js": "^0.7.5",
"ws": "^5.0.0",
"xmldom": "^0.1.27",
"yargs": "^11.0.0"
},
"scripts": {
"build": "gulp transpile",
"mocha": "mocha",
"prepublish": "gulp prepublish",
"test": "gulp once",
"e2e-test": "gulp e2e-test",
"watch": "gulp watch",
"coverage": "gulp coveralls",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit-test": "REPORTER=dot gulp once",
"lint": "gulp eslint",
"lint:fix": "gulp eslint --fix"
},
"pre-commit": [
"precommit-msg",
"precommit-test"
],
"devDependencies": {
"appium-event-parser": "^1.0.0",
"appium-gulp-plugins": "^2.2.0",
"appium-test-support": "^1.0.0",
"babel-eslint": "^7.1.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^3.18.0",
"eslint-config-appium": "^2.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-promise": "^3.3.1",
"glob": "^7.1.0",
"gulp": "^3.8.11",
"ios-test-app": "^2.5.7",
"ios-uicatalog": "^1.0.4",
"mocha": "^5.1.1",
"pem": "^1.8.3",
"pngjs": "^3.3.1",
"pre-commit": "^1.1.3",
"sinon": "^5.0.1",
"through2": "^2.0.0",
"unzip": "^0.1.11",
"wd": "^1.5.0"
}
}