forked from appium/appium-chromedriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.99 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
{
"name": "appium-chromedriver",
"description": "Node.js wrapper around chromedriver.",
"keywords": [
"appium",
"chrome",
"android"
],
"version": "4.24.0",
"author": "appium",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-chromedriver.git"
},
"bugs": {
"url": "https://github.com/appium/appium-chromedriver/issues"
},
"engines": [
"node"
],
"main": "./build/index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"files": [
"config",
"index.js",
"install-npm.js",
"lib",
"build/index.js",
"build/install-npm.js",
"build/lib",
"config/mapping.json"
],
"dependencies": {
"@babel/runtime": "^7.0.0",
"appium-base-driver": "^6.0.0",
"appium-support": "^2.46.0",
"asyncbox": "^2.0.2",
"axios": "^0.19.2",
"bluebird": "^3.5.1",
"compare-versions": "^3.4.0",
"fancy-log": "^1.3.2",
"lodash": "^4.17.4",
"semver": "^7.0.0",
"source-map-support": "^0.5.5",
"teen_process": "^1.15.0",
"xmldom": "^0.3.0",
"xpath": "^0.0.27"
},
"pre-commit": [
"precommit-msg",
"precommit-test"
],
"scripts": {
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
"prepare": "gulp prepublish",
"postinstall": "node install-npm.js",
"test": "gulp once",
"watch": "gulp watch",
"build": "gulp transpile",
"coverage": "gulp coveralls",
"e2e-test": "gulp e2e-test",
"chromedriver": "node install-npm.js",
"chromedriver_all": "node install-npm.js --all",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit-test": "REPORTER=dot gulp once",
"lint": "gulp lint",
"lint:fix": "gulp lint --fix"
},
"devDependencies": {
"appium-gulp-plugins": "^5.2.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint-config-appium": "^4.0.1",
"gulp": "^4.0.0",
"mocha": "^7.0.1",
"pre-commit": "^1.1.3",
"sinon": "^9.0.0"
}
}