forked from appium/appium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.59 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
{
"name": "appium",
"description": "Automation for Apps.",
"tags": [
"automation",
"javascript",
"selenium",
"webdriver",
"ios",
"android",
"firefoxos",
"testing"
],
"version": "1.7.2-beta",
"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": ">=5",
"npm": ">=3"
},
"main": "./build/lib/main.js",
"bin": {
"appium": "./build/lib/main.js"
},
"directories": {
"lib": "./lib",
"doc": "./docs"
},
"dependencies": {
"appium-android-driver": "1.x",
"appium-base-driver": "2.x",
"appium-espresso-driver": "^1.0.0-beta.3",
"appium-fake-driver": "0.x",
"appium-ios-driver": "1.x",
"appium-mac-driver": "1.x",
"appium-selendroid-driver": "1.x",
"appium-support": "2.x",
"appium-uiautomator2-driver": "0.x",
"appium-windows-driver": "0.x",
"appium-xcuitest-driver": "2.x",
"appium-youiengine-driver": "1.x",
"argparse": "1.x",
"async-lock": "^1.0.0",
"asyncbox": "2.x",
"babel-runtime": "=5.8.24",
"bluebird": "2.x",
"continuation-local-storage": "3.x",
"dateformat": "^2.0.0",
"lodash": "4.x",
"npmlog": "2.x",
"request": "^2.81.0",
"request-promise": "1.x",
"source-map-support": "0.x",
"teen_process": "1.x",
"winston": "2.x"
},
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp once",
"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": "babel-node ./commands-yml/parse.js"
},
"pre-commit": [
"precommit-msg",
"precommit-test"
],
"devDependencies": {
"appium-gulp-plugins": "2.x",
"babel-cli": "^6.26.0",
"babel-eslint": "7.x",
"babel-preset-env": "^1.6.0",
"chai": "3.x",
"chai-as-promised": "5.x",
"eslint": "3.x",
"eslint-config-appium": "2.x",
"eslint-plugin-babel": "3.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-mocha": "4.x",
"eslint-plugin-promise": "3.x",
"gulp": "3.x",
"handlebars": "^4.0.10",
"mocha": "2.x",
"pre-commit": "1.x",
"replace-ext": "^1.0.0",
"sinon": "1.x",
"validate.js": "^0.11.1",
"wd": "1.x",
"yaml-js": "^0.2.0"
},
"optionalDependencies": {
"fsevents": "1.x",
"heapdump": "0.x"
}
}