forked from xgfe/react-native-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (57 loc) · 1.66 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
{
"name": "react-native-datepicker",
"version": "1.5.1",
"description": "react native datePicker component for both Android and IOS, useing DatePikcerAndroid, TimePickerAndroid and DatePickerIOS",
"main": "index.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"mocha": "./node_modules/mocha/bin/_mocha ./test/*.test.js --watch",
"test": "node ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha ./test/*.test.js",
"coverage": "cat ./coverage/lcov.info | coveralls",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "eslint ."
},
"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": {
"moment": "2.x.x"
},
"devDependencies": {
"react": "~15.4.0",
"react-native": "~0.39.0",
"cz-conventional-changelog": "^1.1.6",
"pre-commit": "^1.1.3",
"babel-core": "^6.5.2",
"babel-preset-react-native": "^1.8.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"enzyme": "^2.4.0",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "^9.4.1",
"mocha": "^2.5.2",
"react-addons-test-utils": "~15.4.0",
"react-dom": "~15.4.0",
"react-native-mock": "^0.2.8",
"sinon": "^1.17.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"pre-commit": [
"lint"
]
}