-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
68 lines (68 loc) · 1.65 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
{
"name": "appium-instruments",
"description": "IOS Instruments + instruments-without-delay launcher used by Appium",
"keywords": [
"appium",
"instruments"
],
"version": "3.10.0",
"author": "appium",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-instruments.git"
},
"bugs": {
"url": "https://github.com/appium/appium-instruments/issues"
},
"engines": [
"node"
],
"main": "./build/index.js",
"bin": {
"xcode-iwd": "./bin/xcode-iwd.sh"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"appium-ios-simulator": "^1.5.3",
"appium-support": "^2.5.0",
"appium-xcode": "^3.1.0",
"asyncbox": "^2.3.1",
"babel-runtime": "=5.8.24",
"bluebird": "^2.10.1",
"colors": "^1.1.2",
"lodash": "^3.10.1",
"source-map-support": "^0.3.2",
"teen_process": "^1.5.2",
"through": "~2.3.8"
},
"scripts": {
"prepublish": "./node_modules/.bin/gulp prepublish",
"test": "./node_modules/.bin/gulp once",
"watch": "./node_modules/.bin/gulp",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"lint": "gulp eslint"
},
"pre-commit": [
"precommit-msg",
"lint",
"test"
],
"devDependencies": {
"appium-gulp-plugins": "^1.3.12",
"appium-test-support": "0.0.5",
"babel-eslint": "^6.1.0",
"chai": "^3.3.0",
"chai-as-promised": "^5.1.0",
"eslint": "^2.13.1",
"eslint-config-appium": "0.0.6",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-mocha": "^3.0.0",
"gulp": "^3.9.0",
"pre-commit": "^1.1.3",
"sinon": "^1.17.0"
}
}