This repository has been archived by the owner on Jan 14, 2020. It is now read-only.
forked from appium/appium-ios-simulator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 1.97 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
{
"name": "appium-ios-simulator",
"description": "iOS Simulator interface for Appium.",
"keywords": [
"appium"
],
"version": "3.10.0",
"author": "appium",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-ios-simulator.git"
},
"bugs": {
"url": "https://github.com/appium/appium-ios-simulator/issues"
},
"engines": [
"node"
],
"main": "./build/index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"files": [
"index.js",
"lib",
"build/index.js",
"build/lib"
],
"dependencies": {
"@babel/runtime": "^7.0.0",
"appium-support": "^2.4.0",
"appium-xcode": "^3.1.0",
"async-lock": "^1.0.0",
"asyncbox": "^2.3.1",
"bluebird": "^3.5.1",
"fkill": "^6.0.0",
"lodash": "^4.2.1",
"node-simctl": "^5.0.0",
"openssl-wrapper": "^0.3.4",
"semver": "^6.0.0",
"shell-quote": "^1.6.1",
"source-map-support": "^0.5.3",
"teen_process": "^1.3.0"
},
"scripts": {
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
"prepare": "gulp prepublish",
"test": "gulp once",
"watch": "gulp watch",
"build": "gulp transpile",
"e2e-test": "gulp e2e-test",
"mocha": "mocha",
"coverage": "gulp coveralls",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit-test": "REPORTER=dot gulp once",
"lint": "gulp eslint",
"lint:fix": "gulp eslint --fix"
},
"pre-commit": [
"precommit-msg",
"precommit-test"
],
"devDependencies": {
"ajv": "^6.5.3",
"appium-gulp-plugins": "^3.1.0",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"colors": "^1.1.2",
"eslint-config-appium": "^4.0.1",
"fs-extra": "^7.0.0",
"gulp": "^4.0.0",
"inquirer": "^6.0.0",
"ios-test-app": "^3.0.0",
"mocha": "^6.0.0",
"pem": "^1.8.3",
"pre-commit": "^1.1.3",
"sinon": "^7.0.0",
"uuid": "^3.1.0"
},
"greenkeeper": {
"ignore": []
}
}