-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.57 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
{
"name": "@dietime/react-native-date-picker",
"description": "React Native date picker expo component for iOS, Android and browser. Designed using ScrollView.",
"version": "1.2.1",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"lib/",
"src/"
],
"author": "Denis Glazkov <glazzk.off@mail.ru>",
"license": "MIT",
"keywords": [
"react",
"native",
"datepicker",
"date",
"picker",
"expo"
],
"scripts": {
"example": "cd example && yarn start",
"build": "bob build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DieTime/react-native-date-picker.git"
},
"bugs": {
"url": "https://github.com/DieTime/react-native-date-picker/issues"
},
"homepage": "https://github.com/DieTime/react-native-date-picker#readme",
"peerDependencies": {
"expo-linear-gradient": "*",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@types/react": "~16.9.35",
"@types/react-dom": "~16.9.8",
"@types/react-native": "~0.63.2",
"expo-linear-gradient": "~10.0.3",
"react": "^17.0.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
"react-native-builder-bob": "^0.17.1",
"typescript": "^4.1.3"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}