-
Notifications
You must be signed in to change notification settings - Fork 328
/
package.json
105 lines (105 loc) · 2.91 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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "react-native-calendar-strip",
"description": "Easy to use and visually stunning calendar component for React Native",
"author": "Bogdan Begovic <bogdanbegovic@gmail.com>",
"contributors": [
"Christopher Burns (https://github.com/Burnsy)",
"Florian Biebel (https://github.com/1ne8ight7even)",
"Peace Chen (https://github.com/peacechen)",
"Sam Colby (https://github.com/samcolby)",
"Vitaliy Zhukov (https://github.com/Vitall)",
"Dimka Vasilyev (https://github.com/gHashTag)",
"Quinton Chester (https://github.com/QuintonC)"
],
"license": "MIT",
"homepage": "https://github.com/BugiDev/react-native-calendar-strip#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/BugiDev/react-native-calendar-strip.git"
},
"bugs": {
"url": "https://github.com/BugiDev/react-native-calendar-strip/issues"
},
"version": "2.2.6",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"eslint": "eslint src/**/*.js __tests__/**/*.js --fix",
"test": "npm run eslint && jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"contributors:add": "./node_modules/.bin/all-contributors add",
"contributors:generate": "./node_modules/.bin/all-contributors generate",
"postinstall": "node-git-hooks"
},
"dependencies": {
"moment": ">=2.0.0",
"node-git-hooks": "^1.0.1",
"prop-types": "^15.6.0",
"recyclerlistview": "^3.0.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-native": "^0.63.37",
"all-contributors-cli": "^4.10.1",
"babel-eslint": "^8.0.3",
"babel-jest": "^26.6.3",
"babel-preset-react-native": "^4.0.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.3.0",
"eslint": "^4.13.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.5.1",
"jest": "^26.6.3",
"react": "^16.13.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-native": "^0.62.0",
"react-test-renderer": "^16.2.0"
},
"keywords": [
"RN",
"calendar",
"calendar strip",
"calendar-strip",
"native",
"react",
"react native",
"react native calendar",
"react native calendar strip",
"react-native",
"react-native-calendar",
"react-native-calendar-strip",
"rn",
"strip"
],
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"verbose": true,
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.js",
"!src/img.js",
"!example/*.js"
],
"modulePathIgnorePatterns": [
"example",
"npm-cache",
".npm"
],
"collectCoverage": false,
"globals": {
"__DEV__": true
}
}
}