-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
67 lines (67 loc) · 1.85 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
{
"name": "ios-uicatalog",
"version": "3.8.0",
"description": "Apple iOS UIKitCatalog app",
"main": "index.js",
"license": "Apache-2.0",
"scripts": {
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
"build": "npm run build:ios12 && npm run build:ios13",
"build:ios12": "cd UICatalog && gulp install",
"build:ios13": "cd UIKitCatalog && gulp install",
"install": "npm run build:ios12 && npm run build:ios13",
"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"
],
"repository": {
"type": "git",
"url": "https://github.com/appium/ios-uicatalog.git"
},
"keywords": [
"appium",
"ios",
"uicatalog",
"uicatalog"
],
"os": [
"darwin"
],
"files": [
"gulpfile.js",
"index.js",
"uikitcatalog-info.md",
"UICatalog/gulpfile.js",
"UICatalog/uicatalog-info.md",
"UICatalog/UICatalog",
"UICatalog/UICatalog.xcodeproj",
"!UICatalog/UICatalog.xcodeproj/project.xcworkspace/xcuserdata",
"!UICatalog/UICatalog.xcodeproj/xcuserdata",
"UIKitCatalog/gulpfile.js",
"UIKitCatalog/uicatalog-info.md",
"UIKitCatalog/Configuration",
"UIKitCatalog/UIKitCatalog",
"UIKitCatalog/UIKitCatalog.xcodeproj",
"!UIKitCatalog/UIKitCatalog.xcodeproj/project.xcworkspace/xcuserdata",
"!UIKitCatalog/UIKitCatalog.xcodeproj/xcuserdata"
],
"author": "",
"homepage": "https://github.com/appium/ios-uicatalog",
"dependencies": {
"appium-gulp-plugins": "^5.0.0",
"appium-xcode": "^5.0.0",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2"
},
"devDependencies": {
"eslint-config-appium": "^4.2.0",
"pre-commit": "^1.2.2"
}
}