-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "use-calendar-matrix",
"version": "1.0.0",
"description": "React hooks to generate a calendar matrix (array of weeks and days) given the year and month. This value then can be used for any purpose related to calendar like datepicker and so on.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"calendar",
"matrix",
"react",
"react-hooks",
"javascript",
"datepicker"
],
"author": {
"name": "Ongki Herlambang",
"email": "ongki@herlambang.design",
"website": "https://herlambang.design"
},
"license": "MIT",
"dependencies": {
"date-fns": "^2.2.1",
"react": "^16.9.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --single-quote --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"eslint-config-react-app": "^5.0.2",
"husky": "^3.0.5",
"lint-staged": "^9.3.0",
"prettier": "^1.18.2"
},
"repository": {
"type": "git",
"url": "https://github.com/vasilenka/use-calendar-matrix"
},
"bugs": {
"url": "https://github.com/vasilenka/use-calendar-matrix/issues"
}
}