forked from alexnaiman/react-native-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.15 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
{
"name": "react-native-datepicker",
"version": "1.8.0",
"description": "React Native DatePicker component for both Android and iOS, useing DatePickerAndroid, TimePickerAndroid and DatePickerIOS",
"main": "datepicker.js",
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xgfe/react-native-datepicker.git"
},
"keywords": [
"react-native",
"DatePicker"
],
"author": "xgfe",
"license": "MIT",
"bugs": {
"url": "https://github.com/xgfe/react-native-datepicker/issues"
},
"homepage": "https://github.com/xgfe/react-native-datepicker#readme",
"dependencies": {
"@react-native-community/datetimepicker": "^2.3.1",
"moment": "^2.24.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.9.2",
"babel-jest": "25.2.4",
"coveralls": "^2.11.9",
"cz-conventional-changelog": "^1.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"prettier": "^2.0.2",
"@react-native-community/eslint-config": "^1.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"eslint-plugin-react-native": "^3.8.1",
"inquirer": "^3.0.5",
"jest": "25.2.4",
"jsdom": "^11.3.0",
"jsdom-global": "^3.0.2",
"metro-react-native-babel-preset": "^0.59.0",
"pre-commit": "^1.2.2",
"react": "16.11.0",
"react-native": "0.62.0",
"react-test-renderer": "16.11.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/",
"tools/"
]
},
"pre-commit": [
"lint"
]
}