-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 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
{
"name": "authorize-ios",
"description": "Script that helps bypass the authorization pop-up that appears during a simulated test",
"keywords": [
"appium"
],
"version": "1.2.1",
"author": "appium",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/authorize-ios.git"
},
"bugs": {
"url": "https://github.com/appium/authorize-ios/issues"
},
"engines": [
"node"
],
"main": "./build/index.js",
"bin": {
"authorize-ios": "./authorize-ios.js"
},
"directories": {
"lib": "lib"
},
"files": [
"authorize-ios.js",
"index.js",
"lib",
"build/authorize-ios.js",
"build/index.js",
"build/lib"
],
"dependencies": {
"@babel/runtime": "^7.0.0",
"appium-support": "^2.5.0",
"appium-xcode": "^3.0.0",
"bluebird": "^3.5.1",
"glob": "^7.1.2",
"lodash": "^4.17.10",
"source-map-support": "^0.5.6",
"teen_process": "^1.0.0"
},
"scripts": {
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
"prepare": "gulp prepublish",
"test": "gulp once",
"watch": "gulp watch",
"lint": "gulp lint",
"lint:fix": "gulp lint --fix",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit-test": "REPORTER=dot gulp once"
},
"pre-commit": [
"precommit-msg",
"precommit-test"
],
"devDependencies": {
"ajv": "^6.5.3",
"appium-gulp-plugins": "^3.1.0",
"babel-eslint": "^10.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^5.2.0",
"eslint-config-appium": "^4.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-promise": "^4.0.0",
"gulp": "^4.0.0",
"mocha": "^6.0.0",
"pre-commit": "^1.2.2",
"sinon": "^7.2.3"
},
"greenkeeper": {
"ignore": []
}
}