-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3.02 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
{
"name": "appium-devtools-plugin",
"version": "0.1.1",
"description": "Plugin for exposing chromium devtools from Android devices",
"keywords": [
"automation",
"javascript",
"selenium",
"webdriver",
"android",
"devtools",
"testing"
],
"homepage": "https://appium.io",
"bugs": {
"url": "https://github.com/mykola-mokhnach/appium-devtools-plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mykola-mokhnach/appium-devtools-plugin.git",
"directory": "packages/images-plugin"
},
"license": "Apache-2.0",
"author": "Mykola Mokhnach",
"types": "./build/lib/plugin.d.ts",
"files": [
"build",
"docs",
"lib",
"index.js",
"tsconfig.json",
"!build/tsconfig.tsbuildinfo"
],
"scripts": {
"build": "tsc -b",
"clean": "npm run build -- --clean",
"dev": "npm run build -- --watch",
"e2e-test": "mocha --exit --timeout 10m \"./test/functional/**/*.e2e.spec.js\"",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"prepare": "npm run rebuild",
"rebuild": "npm run clean && npm run build",
"test": "mocha --exit --timeout 1m \"./test/unit/**/*.spec.js\""
},
"dependencies": {
"axios": "^1.5.0",
"bluebird": "^3.7.2",
"lodash": "^4.17.21",
"portscanner": "^2.2.0",
"source-map-support": "^0.x",
"ws": "^8.13.0"
},
"peerDependencies": {
"appium": "^2.0.0"
},
"engines": {
"node": "^16.13.0 || >=18.0.0",
"npm": ">=8"
},
"appium": {
"pluginName": "devtools",
"mainClass": "DevtoolsPlugin"
},
"publishConfig": {
"access": "public"
},
"typedoc": {
"entryPoint": "./lib/plugin.js"
},
"main": "./build/index.js",
"devDependencies": {
"@appium/eslint-config-appium": "^6.0.0",
"@appium/support": "^4.0.1",
"@appium/test-support": "^3.0.0",
"@appium/tsconfig": "^0.x",
"@appium/types": "^0.x",
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@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.194",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.3",
"@types/portscanner": "^2.1.1",
"@types/semver": "^7.5.0",
"@types/sinon": "^17.0.1",
"@types/source-map-support": "^0.5.6",
"@types/teen_process": "^2.0.0",
"@types/ws": "^8.5.4",
"asyncbox": "^3.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"conventional-changelog-conventionalcommits": "^7.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.0.0",
"prettier": "^3.0.1",
"rimraf": "^5.0.0",
"semantic-release": "^22.0.8",
"sinon": "^17.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"webdriverio": "^8.16.9"
}
}