@wix-pilot/webdriverio-appium 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wix-pilot/webdriverio-appium",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "WebdriverIO and Appium driver for Wix Pilot usage",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"registry": "https://registry.npmjs.org"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/wix-incubator/pilot.git"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsc && tsc-alias",
|
|
19
|
+
"test": "echo No tests available for this package",
|
|
20
|
+
"test:example": "wdio run examples/wdio.conf.ts",
|
|
21
|
+
"build:app": "cd ../detox/ExampleApp && npm run build:ios",
|
|
22
|
+
"bump-version:patch": "npm version patch && git commit -am 'chore: bump patch version' && git push",
|
|
23
|
+
"release:patch": "npm run test && npm run bump-version:patch && npm run build && npm publish --access public",
|
|
24
|
+
"bump-version:minor": "npm version minor && git commit -am 'chore: bump minor version' && git push",
|
|
25
|
+
"release:minor": "npm run test && npm run bump-version:minor && npm run build && npm publish --access public",
|
|
26
|
+
"bump-version:major": "npm version major && git commit -am 'chore: bump major version' && git push",
|
|
27
|
+
"release:major": "npm run test && npm run bump-version:major && npm run build && npm publish --access public",
|
|
28
|
+
"lint": "eslint . --ext .ts",
|
|
29
|
+
"lint:fix": "eslint . --ext .ts --fix",
|
|
30
|
+
"type-check": "tsc --noEmit"
|
|
31
|
+
},
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/wix-incubator/pilot/issues"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@wix-pilot/core": "^2.0.0"
|
|
37
|
+
},
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"@wdio/globals": ">=8.0.0"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@wdio/globals": "^9.9.1",
|
|
43
|
+
"@wdio/appium-service": "^8.29.0",
|
|
44
|
+
"@wdio/cli": "^9.9.1",
|
|
45
|
+
"@wdio/local-runner": "^9.9.1",
|
|
46
|
+
"@wdio/mocha-framework": "^9.9.0",
|
|
47
|
+
"@wdio/spec-reporter": "^9.9.0",
|
|
48
|
+
"@wdio/types": "^9.9.0",
|
|
49
|
+
"appium": "^2.15.0",
|
|
50
|
+
"appium-xcuitest-driver": "^8.3.1",
|
|
51
|
+
"axios": "^1.7.9",
|
|
52
|
+
"chai": "^5.2.0",
|
|
53
|
+
"webdriverio": "^9.9.1"
|
|
54
|
+
}
|
|
55
|
+
}
|