forked from appium/ios-test-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.24 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
{
"name": "ios-test-app",
"description": "iOS app for testing",
"keywords": [
"appium",
"ios",
"testapp"
],
"version": "3.0.2",
"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"
],
"os": [
"darwin"
],
"main": "index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"files": [
"gulpfile.js",
"index.js",
"lib",
"Test App 2",
"TestApp.xcodeproj"
],
"dependencies": {
"appium-gulp-plugins": "^4.0.0",
"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": {
"eslint-config-appium": "^4.0.1",
"pre-commit": "^1.2.2"
}
}