-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
62 lines (62 loc) · 1.29 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
{
"name": "ios-test-app",
"description": "iOS app for testing",
"keywords": [
"appium",
"ios",
"testapp"
],
"version": "3.1.0",
"author": "appium",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/ios-test-app.git"
},
"bugs": {
"url": "https://github.com/appium/ios-test-app/issues"
},
"engines": {
"node": ">=12"
},
"os": [
"darwin"
],
"main": "index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"files": [
"gulpfile.js",
"index.js",
"lib",
"Test App 2",
"TestApp.xcodeproj"
],
"dependencies": {
"gulp": "^4.0.0"
},
"scripts": {
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
"build": "gulp ios-apps:install",
"install": "gulp ios-apps:install",
"test": "gulp once",
"watch": "gulp watch",
"lint": "gulp lint",
"lint:fix": "gulp lint --fix",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit-test": "gulp lint"
},
"pre-commit": [
"precommit-msg",
"precommit-test"
],
"devDependencies": {
"@appium/eslint-config-appium": "^8.0.0",
"@appium/gulp-plugins": "^8.0.0",
"eslint-config-prettier": "^8.5.0",
"pre-commit": "^1.2.2"
}
}