forked from appium/appium-chromedriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 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
{
"name": "appium-chromedriver",
"description": "Node.js wrapper around chromedriver.",
"keywords": [
"appium",
"chrome",
"android"
],
"version": "5.4.2",
"author": "Appium Contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-chromedriver.git"
},
"bugs": {
"url": "https://github.com/appium/appium/issues"
},
"engines": {
"node": ">=14",
"npm": ">=8"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"main": "./build/index.js",
"directories": {
"lib": "lib"
},
"files": [
"config",
"index.js",
"install-npm.js",
"lib",
"build",
"!build/test",
"!build/tsconfig.tsbuildinfo",
"config/mapping.json",
"CHANGELOG.md",
"tsconfig.json"
],
"types": "./build/index.d.ts",
"dependencies": {
"@appium/base-driver": "^9.1.0",
"@appium/support": "^4.0.0",
"@babel/runtime": "^7.0.0",
"@xmldom/xmldom": "^0.x",
"asyncbox": "^2.0.2",
"axios": "^1.x",
"bluebird": "^3.5.1",
"compare-versions": "^5.0.0",
"fancy-log": "^2.0.0",
"lodash": "^4.17.4",
"semver": "^7.0.0",
"source-map-support": "^0.x",
"teen_process": "^2.0.0",
"xpath": "^0.x"
},
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"dev": "npm run build -- --watch",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint-staged": "lint-staged",
"postinstall": "node install-npm.js",
"prepare": "husky install && npm run build",
"test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.js\"",
"e2e-test": "mocha --exit --timeout 10m \"./test/functional/**/*-specs.js\""
},
"devDependencies": {
"@appium/eslint-config-appium": "^8.0.0",
"@appium/test-support": "^3.0.0",
"@appium/tsconfig": "^0.2.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/bluebird": "^3.5.38",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"@types/sinon": "^10.0.13",
"@types/teen_process": "^2.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"mocha": "^10.0.0",
"prettier": "^2.8.4",
"rimraf": "^5.0.0",
"semantic-release": "^20.0.2",
"sinon": "^15.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}