forked from react-native-datetimepicker/datetimepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 4.13 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@react-native-community/datetimepicker",
"version": "2.1.0",
"description": "DateTimePicker component for React Native",
"main": "./src/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "react-native start",
"start:android": "react-native run-android --root example/",
"start:ios": "react-native run-ios --project-path example/ios",
"test": "jest ./test",
"posttest": "npm run lint",
"lint": "eslint {example,src,test}/**/*.js",
"flow": "flow check",
"detox:ios:build:debug": "detox build -c ios.sim.debug",
"detox:ios:test:debug": "detox test -c ios.sim.debug",
"detox:ios:build:release": "detox build -c ios.sim.release",
"detox:ios:test:release": "detox test -c ios.sim.release",
"detox:android:build:debug": "detox build -c android.emu.debug",
"detox:android:test:debug": "detox test -c android.emu.debug",
"detox:android:build:release": "detox build -c android.emu.release",
"detox:android:test:release": "detox test -c android.emu.release",
"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/react-native-community/react-native-datetimepicker.git"
},
"keywords": [
"react-native-component",
"react-native",
"ios",
"android",
"datepicker",
"timepicker",
"datetime"
],
"author": "Martijn Swaagman <[email protected]> (https://github.com/swaagie)",
"contributors": [
"Daniel Sanudo Vacas <[email protected]> (https://github.com/DanielSanudo)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/react-native-community/react-native-datetimepicker/issues"
},
"homepage": "https://github.com/react-native-community/react-native-datetimepicker#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.8.0",
"detox": "^14.0.2",
"eslint": "^6.4.0",
"flow-bin": "^0.98.0",
"flow-typed": "^2.6.0",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.55.0",
"moment": "^2.24.0",
"react": "^16.8.6",
"react-native": "^0.60.4",
"react-test-renderer": "^16.8.6"
},
"peerDependencies": {
"react": ">=16.8",
"react-native": ">=0.59"
},
"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 -project example/ios/example.xcodeproj -destination 'platform=iOS Simulator,name=iPhone X' -scheme example -configuration Debug -derivedDataPath example/ios/build -UseModernBuildSystem=YES",
"type": "ios.simulator",
"name": "iPhone X"
},
"ios.sim.release": {
"binaryPath": "example/ios/build/Build/Products/Release-iphonesimulator/example.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -project example/ios/example.xcodeproj -destination 'platform=iOS Simulator,name=iPhone X' -scheme example -configuration Release -derivedDataPath example/ios/build -UseModernBuildSystem=YES",
"type": "ios.simulator",
"name": "iPhone X"
},
"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 && cd ../..",
"type": "android.emulator",
"name": "TestingAVD"
},
"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 && cd ../..",
"type": "android.emulator",
"name": "TestingAVD"
}
}
}
}