-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
92 lines (92 loc) · 2.53 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
{
"name": "appium-remote-debugger",
"description": "Appium proxy for Remote Debugger protocol",
"keywords": [
"appium"
],
"version": "12.1.4",
"author": "Appium Contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-remote-debugger.git"
},
"bugs": {
"url": "https://github.com/appium/appium-remote-debugger/issues"
},
"engines": {
"node": ">=14",
"npm": ">=8"
},
"types": "./build/index.d.ts",
"main": "./build/index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"files": [
"index.ts",
"lib",
"build",
"scripts",
"atoms",
"CHANGELOG.md"
],
"dependencies": {
"@appium/base-driver": "^9.0.0",
"@appium/support": "^6.0.0",
"appium-ios-device": "^2.0.0",
"asyncbox": "^3.0.0",
"bluebird": "^3.4.7",
"glob": "^10.3.3",
"lodash": "^4.17.11",
"source-map-support": "^0.x",
"teen_process": "^2.0.0"
},
"scripts": {
"build": "tsc -b",
"clean": "npm run build -- --clean",
"rebuild": "npm run clean; npm run build",
"dev": "npm run build -- --watch",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run build",
"test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.js\"",
"e2e-test": "mocha --exit --timeout 1m \"./test/functional/**/*-specs.js\"",
"inspect-safari": "node build/bin/web_inspector_proxy.js",
"build:atoms": "npm run build:selenium && npm run build:atoms:import",
"build:atoms:import": "node scripts/build-atoms.js",
"build:selenium": "node scripts/build-selenium.js"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"devDependencies": {
"@appium/eslint-config-appium-ts": "^0.x",
"@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/lodash": "^4.14.196",
"@types/mocha": "^10.0.1",
"@types/node": "^22.0.0",
"@types/teen_process": "^2.0.0",
"appium-ios-simulator": "^6.1.2",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"mocha": "^11.0.1",
"mocha-junit-reporter": "^2.0.0",
"mocha-multi-reporters": "^1.5.1",
"node-simctl": "^7.0.1",
"prettier": "^3.0.0",
"serve-static": "^1.14.1",
"semantic-release": "^24.0.0",
"sinon": "^19.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.2"
}
}