forked from BugiDev/react-native-calendar-strip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.24 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-native-calendar-strip",
"version": "1.2.0",
"description": "Easy to use and visually stunning calendar component for React Native",
"main": "index.js",
"directories": {
"example": "example"
},
"dependencies": {
"moment": "^2.17.1",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-jest": "^19.0.0",
"babel-preset-react-native": "^1.9.1",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.4.0",
"eslint-plugin-react": "^6.2.0",
"jest": "^19.0.2",
"prettier": "^1.5.3",
"react": "15.4.2",
"react-addons-test-utils": "15.4.2",
"react-dom": "15.4.2",
"react-native": "0.42.3",
"react-test-renderer": "15.4.2"
},
"jest": {
"preset": "react-native",
"verbose": true,
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.js",
"!src/img.js",
"!example/*.js"
],
"collectCoverage": false,
"globals": {
"__DEV__": true
}
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"eslint": "eslint .",
"prettier": "prettier --write \"{src,__tests__}/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/BugiDev/react-native-calendar-strip.git"
},
"keywords": [
"react",
"native",
"rn",
"RN",
"react native",
"react-native",
"calendar",
"strip",
"calendar strip",
"calendar-strip",
"react native calendar",
"react-native-calendar",
"react native calendar strip",
"react-native-calendar-strip"
],
"author": "Bogdan Begovic <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BugiDev/react-native-calendar-strip/issues"
},
"contributors": [
{
"name": "Florian Biebel",
"url": "https://github.com/1ne8ight7even"
},
{
"name": "Peace Chen",
"url": "https://github.com/peacechen"
},
{
"name": "Sam Colby",
"url": "https://github.com/samcolby"
},
{
"name": "Vitaliy Zhukov",
"url": "https://github.com/Vitall"
}
],
"homepage": "https://github.com/BugiDev/react-native-calendar-strip#readme"
}