forked from ahmad2smile/react-native-calendar-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.72 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
{
"name": "react-native-calendar-select",
"version": "0.1.2",
"description": "Calendar select component for react-native, like Airbnb.",
"main": "./Calendar.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Tinysymphony/react-native-calendar-select.git"
},
"scripts": {
"start": "react-native start",
"ios": "react-native run-ios",
"android": "react-native run-android",
"test": "jest",
"coverage": "cat ./coverage/lcov.info | coveralls",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"keywords": [
"react-native",
"react-native-calendar-xg",
"calendar"
],
"dependencies": {
"moment": "^2.18.1"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "16.8.6",
"react-native": "0.60.5"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-jest": "21.2.0",
"babel-preset-react-native": "4.0.0",
"coveralls": "^2.13.1",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.13.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"jest": "21.2.1",
"react": "16.8.6",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-native": "0.60.5",
"react-test-renderer": "16.0.0"
},
"jest": {
"preset": "react-native",
"verbose": true,
"collectCoverage": true,
"moduleFileExtensions": [
"js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}