-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
81 lines (81 loc) · 2.03 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
{
"name": "appium-android-bootstrap",
"description": "Node interface to Appium Android Bootstrap, the java project which appium uses to interact with UiAutomator",
"keywords": [
"appium",
"android",
"bootstrap"
],
"version": "3.0.0",
"author": "appium",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-android-bootstrap.git"
},
"bugs": {
"url": "https://github.com/appium/appium-android-bootstrap/issues"
},
"engines": [
"node"
],
"main": "./build/index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"dependencies": {
"appium-base-driver": "^3.0.0",
"appium-support": "^2.5.0",
"babel-runtime": "=5.8.24",
"bluebird": "^3.5.1",
"lodash": "^4.17.5",
"net": "^1.0.2",
"source-map-support": "^0.5.3",
"teen_process": "^1.3.1"
},
"scripts": {
"prepublish": "gulp prepublish",
"clean": "rm -rf node_modules && npm install",
"test": "gulp once",
"watch": "gulp watch",
"mocha": "mocha",
"e2e-test": "gulp e2e-test",
"coverage": "gulp coveralls",
"build": "gulp transpile",
"build:jar": "gulp ant",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"lint": "gulp eslint",
"lint:fix": "gulp eslint --fix"
},
"devDependencies": {
"appium-adb": "^6.2.2",
"appium-gulp-plugins": "^2.2.0",
"appium-test-support": "^1.0.0",
"babel-eslint": "^7.1.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^3.10.2",
"eslint-config-appium": "^2.1.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-promise": "^3.3.1",
"gulp": "^3.9.0",
"mocha": "^5.0.1",
"pre-commit": "^1.1.3"
},
"greenkeeper": {
"ignore": [
"babel-eslint",
"babel-preset-env",
"eslint",
"eslint-plugin-babel",
"eslint-plugin-import",
"eslint-plugin-mocha",
"eslint-plugin-promise",
"gulp",
"babel-runtime"
]
}
}