forked from wmcmahan/react-native-calendar-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.14 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-events",
"version": "2.2.0",
"description": "React Native module for IOS Calendar Events",
"homepage": "https://github.com/wmcmahan/react-native-calendar-events",
"repository": {
"type": "git",
"url": "https://github.com/wmcmahan/react-native-calendar-events.git"
},
"author": "Will McMahan",
"license": "MIT",
"keywords": [
"react-native",
"react-component",
"ios",
"android",
"eventkit",
"reminders",
"calendar-events"
],
"main": "src",
"types": "src/index.d.ts",
"files": [
"android/",
"ios/",
"src/",
"package.json",
"RNCalendarEvents.podspec"
],
"peerDependencies": {
"react-native": ">=0.60.0"
},
"scripts": {
"format": "prettier --write \"**/*.{md,json,js,css}\"",
"release": "npmpub",
"test": "echo \"Everything is awesome!\""
},
"devDependencies": {
"husky": "^4.0.0",
"lint-staged": "^10.0.0",
"npmpub": "^5.0.0",
"prettier": "^2.0.0"
},
"lint-staged": {
"*.{md,json,js,css}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}