-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
113 lines (113 loc) · 2.83 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
{
"name": "appium-chromium-driver",
"version": "1.4.4",
"description": "Appium 2.x driver for Chromium-based browsers that work with Chromedriver",
"keywords": [
"appium",
"automation",
"javascript",
"selenium",
"webdriver",
"chrome",
"chromium",
"google"
],
"homepage": "https://appium.io",
"bugs": {
"url": "https://github.com/appium/appium-chromium-driver/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-chromium-driver.git"
},
"license": "Apache-2.0",
"author": "https://github.com/appium",
"directories": {
"lib": "lib"
},
"main": "index.js",
"files": [
"lib",
"build",
"index.js",
"README.md",
"CHANGELOG.md",
"LICENSE",
"npm-shrinkwrap.json",
"scripts"
],
"scripts": {
"build": "tsc -b",
"dev": "npm run build -- --watch",
"clean": "npx rimraf build && npx rimraf node_modules/.cache",
"reinstall": "npm run clean && npx rimraf node_modules && npm install",
"update": "npx rimraf package-lock.json && npm run reinstall",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run build",
"test": "npm run test:unit",
"test:unit": "mocha \"./test/unit/**/*.spec.js\"",
"test:e2e": "mocha \"./test/e2e/**/*.spec.js\"",
"test:smoke": "node ./index.js",
"test:ci": "npm run test:unit && npm run test:e2e && npm run test:smoke"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"dependencies": {
"appium-chromedriver": "^6.1.0",
"bluebird": "^3.7.2",
"lodash": "^4.17.21"
},
"peerDependencies": {
"appium": "^2.11.5"
},
"engines": {
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
"npm": ">=8"
},
"publishConfig": {
"access": "public"
},
"access": "public",
"appium": {
"driverName": "chromium",
"automationName": "Chromium",
"platformNames": [
"Windows",
"mac",
"macOS",
"Linux"
],
"mainClass": "ChromiumDriver",
"scripts": {
"install-chromedriver": "./scripts/install-chromedriver.mjs"
}
},
"typedoc": {
"entryPoint": "./build/lib/index.js"
},
"types": "./build/lib/driver.d.ts",
"devDependencies": {
"@appium/eslint-config-appium": "^8.0.5",
"@appium/tsconfig": "^0.x",
"@appium/types": "^0.x",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bluebird": "^3.5.42",
"@types/mocha": "^10.0.9",
"@types/node": "^20.17.00",
"asyncbox": "^3.0.0",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"mocha": "^10.7.3",
"rimraf": "^5.0.10",
"semantic-release": "^24.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"webdriverio": "9.0.9"
}
}