forked from mmazzarolo/react-native-modal-datetime-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "react-native-modal-datetime-picker",
"version": "4.11.0",
"description": "A react-native datetime-picker for Android and iOS",
"main": "src/index.js",
"typings": "src/index.d.ts",
"scripts": {
"lint": "eslint src",
"precommit": "lint-staged",
"test": "npm run lint",
"prettier": "prettier --write --print-width 100 --single-quote --trailing-comma all src/**/*.js",
"reset": "watchman watch-del-all && rm -rf node_modules/ && npm cache clean && npm prune && yarn cache clean"
},
"keywords": [
"react-native",
"react",
"native",
"date",
"time",
"picker",
"android",
"ios"
],
"author": "Mazzarolo Matteo",
"license": "ISC",
"homepage": "https://github.com/mmazzarolo/react-native-modal-datetime-picker",
"repository": {
"type": "git",
"url": "https://github.com/mmazzarolo/react-native-modal-datetime-picker"
},
"dependencies": {
"moment": "^2.18.1",
"prop-types": "15.5.10",
"react-native-modal": "3.1.0"
},
"devDependencies": {
"babel-eslint": "7.2.3",
"eslint": "4.5.0",
"eslint-plugin-react-app": "^1.0.2",
"husky": "0.14.3",
"lint-staged": "4.0.4",
"prettier": "1.6.1",
"react": ">=15.0.0",
"react-native": ">=0.24.0"
},
"lint-staged": {
"*.js": [
"npm run test",
"npm run prettier",
"git add"
]
}
}