forked from appium/appium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.29 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "appium",
"description": "Automation for Apps.",
"tags": [
"automation",
"javascript",
"selenium",
"webdriver",
"ios",
"android",
"firefoxos",
"testing"
],
"version": "1.9.2-beta.2",
"author": "https://github.com/appium",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium.git"
},
"bugs": {
"url": "https://github.com/appium/appium/issues"
},
"engines": {
"node": ">=8",
"npm": ">=6"
},
"main": "./build/lib/main.js",
"bin": {
"appium": "./build/lib/main.js"
},
"directories": {
"lib": "./lib",
"doc": "./docs"
},
"files": [
"bin",
"lib",
"build/lib"
],
"dependencies": {
"@babel/runtime": "^7.0.0",
"appium-android-driver": "^4.0.0",
"appium-base-driver": "3.x",
"appium-espresso-driver": ">=1.0.0-beta.13",
"appium-fake-driver": "^0.x",
"appium-ios-driver": "2.x",
"appium-mac-driver": "1.x",
"appium-selendroid-driver": "1.x",
"appium-support": "2.x",
"appium-tizen-driver": "1.1.1-beta",
"appium-uiautomator2-driver": "1.x",
"appium-windows-driver": "1.x",
"appium-xcuitest-driver": "2.x",
"appium-youiengine-driver": "1.x",
"argparse": "^1.0.10",
"async-lock": "^1.0.0",
"asyncbox": "2.x",
"bluebird": "3.x",
"continuation-local-storage": "3.x",
"dateformat": "^3.0.3",
"find-root": "^1.1.0",
"lodash": "^4.17.9",
"longjohn": "^0.2.12",
"npmlog": "4.x",
"request": "^2.81.0",
"request-promise": "4.x",
"semver": "^5.5.0",
"source-map-support": "0.x",
"teen_process": "1.x",
"winston": "2.x"
},
"scripts": {
"prepare": "gulp prepublish",
"publish": "gulp prepublish",
"test": "gulp once",
"e2e-test": "gulp e2e-test",
"watch": "gulp watch",
"build": "gulp transpile",
"mocha": "mocha",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit-test": "REPORTER=dot gulp once",
"lint": "gulp eslint",
"coverage": "gulp coveralls",
"generate-docs": "node ./build/commands-yml/parse.js",
"clean": "rm -rf node_modules && rm -rf package-lock.json && npm install",
"clean:prod": "rm -rf node_modules && rm -rf package-lock.json && npm install --production",
"zip": "zip -qr appium.zip .",
"upload": "node ./build/test/scripts/bintray-upload.js",
"zip-and-upload": "npm run zip && npm run upload",
"release-beta": "release pre beta && npm publish --tag beta"
},
"pre-commit": [
"precommit-msg",
"precommit-test"
],
"devDependencies": {
"ajv": "^6.5.3",
"appium-gulp-plugins": "^3.1.0",
"babel-eslint": "^10.0.0",
"chai": "4.x",
"chai-as-promised": "7.x",
"eslint": "^5.2.0",
"eslint-config-appium": "3.x",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-promise": "^4.0.0",
"fancy-log": "^1.3.2",
"gulp": "^4.0.0",
"handlebars": "^4.0.10",
"mocha": "5.x",
"pre-commit": "1.x",
"release": "^4.0.2",
"replace-ext": "^1.0.0",
"sinon": "^6.0.0",
"validate.js": "^0.12.0",
"wd": "^1.10.0",
"yaml-js": "^0.2.0"
},
"optionalDependencies": {
"fsevents": "1.x",
"heapdump": "0.x"
},
"greenkeeper": {
"ignore": [
"winston"
]
}
}