This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
83 lines (83 loc) · 1.83 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
{
"name": "appium-fake-driver",
"description": "Description goes here.",
"keywords": [
"appium"
],
"version": "2.2.0",
"author": "appium",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-fake-driver.git"
},
"bugs": {
"url": "https://github.com/appium/appium-fake-driver/issues"
},
"engines": [
"node"
],
"appium": {
"driverName": "fake",
"automationName": "Fake",
"platformNames": [
"Fake"
],
"mainClass": "FakeDriver",
"scripts": {
"fake-error": "./build/lib/scripts/fake-error.js",
"fake-success": "./build/lib/scripts/fake-success.js"
}
},
"main": "./build/index.js",
"bin": {
"appium-fake-driver": "./build/index.js"
},
"directories": {
"lib": "lib"
},
"files": [
"index.js",
"lib",
"build/index.js",
"build/lib",
"test/fixtures",
"screen.png"
],
"dependencies": {
"@babel/runtime": "^7.0.0",
"appium-base-driver": "^7.0.0",
"appium-support": "^2.11.1",
"asyncbox": "^2.3.2",
"bluebird": "^3.5.1",
"lodash": "^4.17.4",
"source-map-support": "^0.x",
"xmldom": "^0.x",
"xpath": "^0.x"
},
"scripts": {
"build": "gulp transpile",
"mocha": "mocha",
"prepare": "gulp prepublish",
"test": "gulp once",
"e2e-test": "gulp e2e-test",
"watch": "gulp watch",
"coverage": "gulp coveralls",
"lint": "gulp lint",
"lint:fix": "gulp eslint --fix",
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install"
},
"devDependencies": {
"appium-gulp-plugins": "^5.0.0",
"axios": "^0.x",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint-config-appium": "^4.0.1",
"gulp": "^4.0.0",
"sinon": "^13.0.0",
"wd": "^1.5.0"
},
"greenkeeper": {
"ignore": []
}
}