forked from appium-boneyard/appium-uiautomator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.74 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
{
"name": "appium-uiautomator",
"version": "1.2.0",
"description": "Appium Android UI Automator interface",
"main": "./build/index.js",
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp once",
"watch": "gulp watch",
"mocha": "mocha",
"e2e-test": "gulp e2e-test",
"build": "gulp transpile",
"coverage": "gulp coveralls",
"lint": "gulp eslint",
"lint:fix": "gulp eslint --fix",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"test"
],
"author": "appium",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-uiautomator.git"
},
"bugs": {
"url": "https://github.com/appium/appium-uiautomator/issues"
},
"engines": [
"node"
],
"homepage": "https://github.com/appium/appium-uiautomator",
"dependencies": {
"appium-adb": "^6.2.2",
"appium-support": "^2.5.0",
"babel-runtime": "=5.8.24",
"source-map-support": "^0.5.3"
},
"devDependencies": {
"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.8.11",
"pre-commit": "^1.2.2",
"teen_process": "^1.3.1"
},
"greenkeeper": {
"ignore": [
"babel-eslint",
"babel-preset-env",
"eslint",
"eslint-plugin-babel",
"eslint-plugin-import",
"eslint-plugin-mocha",
"eslint-plugin-promise",
"gulp",
"babel-runtime"
]
}
}