-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
97 lines (97 loc) · 2.23 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
{
"name": "react-native-general-calendars",
"version": "1.11.1",
"description": "React Native Calendar Components with support of Gregorian & Jalaali (Shamsi, Persian) Calendars",
"main": "src/index.js",
"scripts": {
"start": "watchman watch-del-all && react-native start",
"ios": "react-native run-ios --simulator=\"iPhone 8\"",
"android": "react-native run-android",
"pretest": "npm run lint",
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"files": [
"src/"
],
"keyword": [
"react",
"react-native",
"react-native-common",
"react-native-general-calendars",
"moment-jalaali",
"moment",
"calendar",
"calendars",
"calendar-list",
"agenda",
"gregorian",
"jalaali",
"hijri",
"persian",
"shamsi",
"ios",
"android",
"windows"
],
"author": {
"name": "Reza Ghorbani",
"email": "[email protected]"
},
"license": "MIT",
"lint-staged": {
"*.{js,json,css,md}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"lodash": "^4.17.15",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"moment": "^2.24.0",
"moment-jalaali": "^0.8.3",
"prop-types": "^15.7.2",
"react-native-common": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^24.9.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native": "^4.0.1",
"eslint": "^6.0.0",
"eslint-config-kajoo": "^1.5.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"react": "16.6.3",
"react-native": "0.57.8"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"example/",
"/node_modules/"
]
},
"homepage": "https://github.com/rghorbani/react-native-general-calendars",
"bugs": {
"url": "https://github.com/rghorbani/react-native-general-calendars/issues"
},
"contributors": [
{
"name": "rghorbani",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/rghorbani/react-native-general-calendars"
}
}