forked from appium/appium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.54 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
{
"name": "appium",
"description": "Automation for Apps.",
"tags": [
"automation",
"javascript",
"selenium",
"webdriver",
"ios",
"android",
"firefoxos",
"testing"
],
"version": "1.15.0-beta.1",
"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",
"authorize-ios": "./node_modules/.bin/authorize-ios"
},
"directories": {
"lib": "./lib",
"doc": "./docs"
},
"files": [
"bin",
"lib",
"build/lib",
"npm-shrinkwrap.json"
],
"dependencies": {
"@babel/runtime": "^7.0.0",
"appium-android-driver": "^4.0.0",
"appium-base-driver": "4.x",
"appium-espresso-driver": "^1.0.0",
"appium-fake-driver": "^0.x",
"appium-ios-driver": "4.x",
"appium-mac-driver": "1.x",
"appium-support": "2.x",
"appium-tizen-driver": "^1.1.1-beta.4",
"appium-uiautomator2-driver": "1.x",
"appium-windows-driver": "1.x",
"appium-xcuitest-driver": "^2.116.3",
"appium-youiengine-driver": "^1.2.0",
"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.11",
"longjohn": "^0.2.12",
"npmlog": "4.x",
"semver": "^6.1.2",
"request": "^2.81.0",
"request-promise": "4.x",
"source-map-support": "0.x",
"teen_process": "1.x",
"winston": "3.x",
"word-wrap": "^1.2.3"
},
"scripts": {
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
"prepare": "gulp prepublish",
"prepublishOnly": "npm run prune-shrinkwrap && gulp fixShrinkwrap",
"postpublish": "npm run restore-shrinkwrap",
"prune-shrinkwrap": "!(test -e npm-shrinkwrap.json) || (npm ci --production --ignore-scripts && npm run backup-shrinkwrap && npm shrinkwrap && npm install --only=dev --no-shrinkwrap) && npm run check-pruned-shrinkwrap",
"restore-shrinkwrap": "!(test -e npm-shrinkwrap.json) || (mv npm-shrinkwrap-backup.json npm-shrinkwrap.json)",
"backup-shrinkwrap": "mv npm-shrinkwrap.json npm-shrinkwrap-backup.json",
"check-pruned-shrinkwrap": "node check-pruned-shrinkwrap.js",
"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 lint",
"lint:fix": "gulp lint --fix",
"coverage": "gulp coveralls",
"generate-docs": "node ./build/commands-yml/parse.js",
"zip": "zip -qr appium.zip .",
"upload": "gulp github-upload",
"zip-and-upload": "npm run zip && npm run upload",
"authorize-ios": "authorize-ios"
},
"pre-commit": [
"precommit-msg",
"precommit-test"
],
"devDependencies": {
"appium-gulp-plugins": "^4.1.0",
"chai": "4.x",
"chai-as-promised": "7.x",
"eslint-config-appium": "^4.0.1",
"fancy-log": "^1.3.2",
"gulp": "^4.0.0",
"handlebars": "^4.0.10",
"mocha": "^6.0.0",
"pre-commit": "1.x",
"replace-ext": "^1.0.0",
"rimraf": "^3.0.0",
"sinon": "^7.2.3",
"validate.js": "^0.13.0",
"wd": "^1.10.0",
"yaml-js": "^0.2.0"
},
"optionalDependencies": {
"fsevents": "2.x"
}
}