-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
{
"name": "appium-cdp-driver",
"description": "Appium driver for the filesystem",
"keywords": [
"appium",
"chrome-dev-tools"
],
"version": "1.0.0-beta.3",
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-fs-driver.git"
},
"bugs": {
"url": "https://github.com/appium/appium-fs-driver/issues"
},
"main": "./build/driver.js",
"bin": {},
"directories": {
"src": "src"
},
"files": [
"build",
"src"
],
"appium": {
"driverName": "cdp-driver",
"automationName": "CDP",
"platformNames": [
"Android"
],
"mainClass": "AppiumCDPDriver"
},
"scripts": {
"clean": "rimraf package-lock.json && rimraf node_modules && TAIKO_SKIP_CHROMIUM_DOWNLOAD=true npm install",
"build": "rimraf build && tsc",
"watch": "tsc --watch",
"test": "mocha --require ts-node/register ./test/*.spec.js --timeout 260000 ",
"install-driver": "npm run build && appium driver install --source=local $(pwd)",
"reinstall-driver": "(appium driver uninstall cdp-driver || exit 0) && npm run install-driver"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"jest": "^27.2.0",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.1.2",
"webdriverio": "^7.12.4"
},
"dependencies": {
"@appium/base-driver": "^8.5.7",
"@appium/support": "^2.59.2",
"appium-adb": "^9.10.0",
"async-retry": "^1.3.3",
"chai": "^4.3.6",
"chrome-remote-interface": "^0.31.3",
"get-port": "^5.1.1",
"taiko": "https://github.com/getgauge/taiko.git"
}
}