-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
90 lines (90 loc) · 2.85 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
{
"name": "appium-gestures-plugin",
"version": "4.0.1",
"description": "This is an Appium plugin designed to perform gestures using W3C Actions.",
"main": "./lib/index.js",
"scripts": {
"build": "npx tsc",
"prepublish": "npx tsc",
"lint": "eslint '**/*.js' --fix",
"test-e2e": "mocha --require ts-node/register -p test/e2e/android.spec.js --timeout 260000",
"prettier": "prettier '**/*.js' --write --single-quote",
"appium-home": "rm -rf /tmp/some-temp-dir && export APPIUM_HOME=/tmp/some-temp-dir",
"install-plugin": "npm run build && appium plugin install --source=local $(pwd)",
"clear-cache": "rm -rf $HOME/.cache/appium-gestures-plugin",
"install-driver": "export APPIUM_HOME=/tmp/some-temp-dir && appium driver install uiautomator2",
"install-wait-plugin": "export APPIUM_HOME=/tmp/some-temp-dir && appium plugin install --source=npm appium-wait-plugin",
"reinstall-plugin": "export APPIUM_HOME=/tmp/some-temp-dir && npm run appium-home && (appium plugin uninstall gestures || exit 0) && npm run install-plugin",
"run-server": "export APPIUM_HOME=/tmp/some-temp-dir && appium server -ka 800 --use-plugins=gestures -pa /wd/hub "
},
"repository": {
"type": "git",
"url": "https://github.com/AppiumTestDistribution/appium-gestures-plugin.git"
},
"contributors": [
{
"name": "Saikrishna",
"email": "saikrishna321@yahoo.com"
},
{
"name": "Srinivasan Sekar",
"email": "srinivasan.sekar1990@gmail.com"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/AppiumTestDistribution/appium-gestures-plugin/issues"
},
"homepage": "https://github.com/AppiumTestDistribution/appium-gestures-plugin#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@types/chai": "^4.2.16",
"@types/lodash": "^4.14.170",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.1",
"babel-eslint": "^10.0.1",
"chai": "^4.1.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^10.2.0",
"prettier": "^2.0.5",
"sinon": "^15.1.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.4",
"webdriverio": "8.27.0"
},
"dependencies": {
"@appium/base-plugin": "^2.2.26"
},
"peerDependencies": {
"appium": "^2.3.0"
},
"appium": {
"pluginName": "gestures",
"mainClass": "GesturesPlugin"
},
"engines": {
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
"npm": ">=8"
},
"lint-staged": {
"src/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"npm run prettier",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"files": [
"lib"
]
}