-
Notifications
You must be signed in to change notification settings - Fork 181
/
package.json
115 lines (115 loc) · 3.37 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "appium-webdriveragent",
"version": "8.0.1",
"description": "Package bundling WebDriverAgent",
"main": "./build/index.js",
"scripts": {
"build": "tsc -b",
"dev": "npm run build -- --watch",
"clean": "npm run build -- --clean",
"lint": "eslint .",
"format": "prettier -w ./lib",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run build",
"test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.js\"",
"e2e-test": "mocha --exit --timeout 10m \"./test/functional/**/*-specs.js\"",
"bundle": "npm run bundle:ios && npm run bundle:tv",
"bundle:ios": "TARGET=runner SDK=sim node ./Scripts/build-webdriveragent.js",
"bundle:tv": "TARGET=tv_runner SDK=tv_sim node ./Scripts/build-webdriveragent.js",
"fetch-prebuilt-wda": "node ./Scripts/fetch-prebuilt-wda.js"
},
"engines": {
"node": ">=14",
"npm": ">=8"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/appium/WebDriverAgent.git"
},
"keywords": [
"Appium",
"iOS",
"WebDriver",
"Selenium",
"WebDriverAgent"
],
"author": "Appium Contributors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/appium/WebDriverAgent/issues"
},
"homepage": "https://github.com/appium/WebDriverAgent#readme",
"devDependencies": {
"@appium/eslint-config-appium": "^8.0.4",
"@appium/eslint-config-appium-ts": "^0.x",
"@appium/test-support": "^3.0.0",
"@appium/tsconfig": "^0.x",
"@appium/types": "^0.x",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/bluebird": "^3.5.38",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/lodash": "^4.14.196",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.7",
"@types/sinon": "^17.0.0",
"@types/sinon-chai": "^3.2.9",
"@types/teen_process": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"appium-xcode": "^5.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"conventional-changelog-conventionalcommits": "^7.0.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-promise": "^6.1.1",
"node-simctl": "^7.0.1",
"mocha": "^10.0.0",
"prettier": "^3.0.0",
"semantic-release": "^23.0.0",
"sinon": "^17.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.2"
},
"dependencies": {
"@appium/base-driver": "^9.0.0",
"@appium/strongbox": "^0.x",
"@appium/support": "^4.0.0",
"appium-ios-device": "^2.5.0",
"appium-ios-simulator": "^5.0.1",
"async-lock": "^1.0.0",
"asyncbox": "^3.0.0",
"axios": "^1.4.0",
"bluebird": "^3.5.5",
"lodash": "^4.17.11",
"source-map-support": "^0.x",
"teen_process": "^2.0.0"
},
"files": [
"index.js",
"lib",
"build/index.js",
"build/lib",
"Scripts/build.sh",
"Scripts/fetch-prebuilt-wda.js",
"Scripts/build-webdriveragent.js",
"Configurations",
"PrivateHeaders",
"WebDriverAgent.xcodeproj",
"WebDriverAgentLib",
"WebDriverAgentRunner",
"WebDriverAgentTests",
"XCTWebDriverAgentLib",
"CHANGELOG.md"
]
}