forked from Tinysymphony/react-native-calendar-select
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.27 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
{
"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.19.2"
},
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-preset-react-native": "^4.0.0",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.2.0",
"istanbul": "^0.4.5",
"jest": "20.0.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.0.0",
"react-native": "^0.50.3",
"react-test-renderer": "^16.0.0"
},
"jest": {
"preset": "react-native",
"verbose": true,
"collectCoverage": true,
"moduleFileExtensions": [
"js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}