forked from appium/WebDriverAgent
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 1.99 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
{
"name": "appium-webdriveragent",
"version": "0.8.0",
"description": "Package bundling WebDriverAgent",
"main": "build/index.js",
"scripts": {
"test": "gulp once",
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
"clean:carthage": "gulp clean:carthage",
"install:dependencies": "gulp install:dependencies",
"build": "gulp transpile",
"prepare": "gulp prepublish",
"lint": "gulp lint",
"lint:fix": "gulp eslint --fix",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit-test": "gulp lint",
"bundle": "node ./ci-jobs/scripts/build-webdriveragent.js"
},
"bin": {
"appium-wda-bootstrap": "./build/index.js"
},
"pre-commit": [
"precommit-msg",
"precommit-test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/appium/WebDriverAgent.git"
},
"keywords": [
"Appium",
"iOS",
"WebDriver",
"Selenium",
"WebDriverAgent"
],
"author": "appium",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/appium/WebDriverAgent/issues"
},
"homepage": "https://github.com/appium/WebDriverAgent#readme",
"devDependencies": {
"appium-gulp-plugins": "^4.1.0",
"appium-test-support": "^1.3.1",
"appium-xcode": "^3.8.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"gulp": "^4.0.2",
"pre-commit": "^1.2.2"
},
"dependencies": {
"appium-support": "^2.29.0",
"asyncbox": "^2.5.3",
"bluebird": "^3.5.5",
"lodash": "^4.17.11",
"node-simctl": "^5.0.1",
"source-map-support": "^0.5.12",
"stream-equal": "^1.1.1",
"teen_process": "^1.14.1"
},
"files": [
"index.js",
"lib",
"build/index.js",
"build/lib",
"Scripts/bootstrap.sh",
"Scripts/build.sh",
"Cartfile",
"Cartfile.resolved",
"Configurations",
"PrivateHeaders",
"WebDriverAgent.xcodeproj",
"WebDriverAgentLib",
"WebDriverAgentRunner",
"WebDriverAgentTests",
"XCTWebDriverAgentLib"
]
}