-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 5.45 KB
/
package.json
File metadata and controls
136 lines (136 loc) · 5.45 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@eohjsc/datepicker",
"version": "1.0.2",
"description": "DateTimePicker component for React Native",
"main": "./src/index.js",
"types": "src/index.d.ts",
"files": [
"ios",
"android",
"src",
"flow-typed",
"windows",
"RNDateTimePicker.podspec"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "react-native start",
"start:android": "react-native run-android --no-jetifier",
"start:ios": "react-native run-ios --project-path example/ios",
"start:windows": "react-native start --use-react-native-windows",
"test": "jest ./test",
"posttest": "npm run lint",
"lint": "eslint {example,src,test}/**/*.js src/index.d.ts",
"flow": "flow check",
"detox:ios:build:debug": "detox build -c ios.sim.debug",
"detox:ios:test:debug": "SIMCTL_CHILD_TZ=Europe/Prague detox test -c ios.sim.debug -l verbose",
"detox:ios:build:release": "detox build -c ios.sim.release",
"detox:ios:test:release": "SIMCTL_CHILD_TZ=Europe/Prague detox test -c ios.sim.release --record-videos all --record-logs all -l verbose",
"detox:android:build:debug": "detox build -c android.emu.debug",
"detox:android:test:debug": "adb shell service call alarm 3 s16 Europe/Prague && detox test -c android.emu.debug -l verbose",
"detox:android:build:release": "detox build -c android.emu.release",
"detox:android:test:release": "adb shell service call alarm 3 s16 Europe/Prague && detox test -c android.emu.release --record-videos all --record-logs all --headless -l verbose",
"detox:clean": "rimraf example/android/build && rimraf example/android/app/build && rimraf example/android/.gradle && rimraf example/ios/build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hinh-eoh/datepicker.git"
},
"keywords": [
"react-native-component",
"react-native",
"ios",
"android",
"windows",
"datepicker",
"timepicker",
"datetime"
],
"author": "Martijn Swaagman <mswaagman@godaddy.com> (https://github.com/swaagie)",
"contributors": [
"Daniel Sanudo Vacas <dsanudovacas@godaddy.com> (https://github.com/DanielSanudo)",
"Vojtech Novak <vonovak@gmail.com> (https://github.com/vonovak)",
"Pavel Balint <lochness42@gmail.com> (https://github.com/lochness42)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hinh-eoh/datepicker/issues"
},
"homepage": "https://github.com/hinh-eoh/datepicker#readme",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@react-native-segmented-control/segmented-control": "^2.4.0",
"@semantic-release/git": "^10.0.1",
"@testing-library/react-native": "^8.0.0",
"babel-jest": "^27.4.4",
"detox": "19.3.0",
"eslint": "^7",
"eslint-plugin-prettier": "^4.0.0",
"flow-bin": "^0.158.0",
"flow-typed": "^3.4.0",
"jest": "^27.4.4",
"jest-circus": "^27.4.4",
"metro-react-native-babel-preset": "^0.66.2",
"moment": "^2.24.0",
"prettier": "^2.5.1",
"react": "17.0.2",
"react-native": "^0.66.4",
"react-native-localize": "^2.1.6",
"react-native-windows": "^0.66.3",
"react-test-renderer": "17.0.2",
"semantic-release": "^18.0.1"
},
"dependencies": {
"invariant": "^2.2.4"
},
"detox": {
"test-runner": "jest",
"runner-config": "example/e2e/config.json",
"configurations": {
"ios.sim.debug": {
"binaryPath": "example/ios/build/Build/Products/Debug-iphonesimulator/example.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -workspace example/ios/example.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 11' -scheme example -configuration Debug -derivedDataPath example/ios/build -UseModernBuildSystem=YES",
"type": "ios.simulator",
"device": {
"type": "iPhone 11"
}
},
"ios.sim.release": {
"binaryPath": "example/ios/build/Build/Products/Release-iphonesimulator/example.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -workspace example/ios/example.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 11' -scheme example -configuration Release -derivedDataPath example/ios/build -UseModernBuildSystem=YES",
"type": "ios.simulator",
"device": {
"type": "iPhone 11"
}
},
"android.emu.debug": {
"binaryPath": "example/android/app/build/outputs/apk/debug/app-debug.apk",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && (cd example/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug)",
"type": "android.emulator",
"device": {
"avdName": "TestingAVD"
}
},
"android.device.debug": {
"binaryPath": "example/android/app/build/outputs/apk/debug/app-debug.apk",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && (cd example/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug)",
"type": "android.attached",
"device": {
"adbName": "34HDU19716000753"
}
},
"android.emu.release": {
"binaryPath": "example/android/app/build/outputs/apk/release/app-release.apk",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && (cd example/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release)",
"type": "android.emulator",
"device": {
"avdName": "TestingAVD"
}
}
}
}
}