forked from joshjhargreaves/react-native-event-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "react-native-events-calendar",
"version": "1.0.8",
"description": "show calendar events by date",
"main": "./src/EventCalendar.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged",
"prettier": "prettier --single-quote --trailing-comma es5 --write",
"prettier-all": "prettier --single-quote --trailing-comma es5 --write \"**/*.js\""
},
"lint-staged": {
"*.js": [
"yarn prettier",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshyhargreaves/react-native-event-calendar.git"
},
"keywords": [
"react-native",
"calendar",
"event",
"events",
"daily"
],
"dependencies": {
"lodash": "^4.17.4",
"moment": "^2.18.1"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"react": "16.0.0-alpha.6",
"react-native": "^0.44.0"
},
"author": "Duy Luong & Josh Hargreaves",
"license": "ISC",
"bugs": {
"url": "https://github.com/joshyhargreaves/react-native-event-calendar/issues"
},
"homepage": "https://github.com/joshyhargreaves/react-native-event-calendar#readme"
}