forked from mmazzarolo/react-native-modal-datetime-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.71 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
{
"name": "react-native-modal-datetime-picker",
"version": "17.1.0",
"description": "A react-native datetime-picker for Android and iOS",
"main": "src/index.js",
"files": [
"src/",
"typings/"
],
"typings": "typings/index.d.ts",
"keywords": [
"react-native",
"react",
"native",
"date",
"time",
"picker",
"android",
"ios"
],
"author": "Mazzarolo Matteo",
"license": "MIT",
"homepage": "https://github.com/mmazzarolo/react-native-modal-datetime-picker",
"repository": {
"type": "git",
"url": "https://github.com/mmazzarolo/react-native-modal-datetime-picker"
},
"scripts": {
"lint": "eslint src",
"lint:fix": "yarn lint --fix",
"test": "yarn run lint",
"release": "yarn semantic-release",
"example:setup": "cd example && yarn setup",
"example:copy": "cd example && yarn copy",
"example:android": "cd example && react-native run-android",
"example:ios": "cd example && react-native run-ios"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-app": "^6.2.2",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"semantic-release": "^17.1.2"
},
"peerDependencies": {
"@react-native-community/datetimepicker": ">=6.7.0",
"react-native": ">=0.65.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint:fix"
],
"*.json": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}