-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.13 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
{
"name": "calendar-dates",
"version": "2.7.2",
"license": "MIT",
"author": "Sung Kim",
"main": "dist/calendardates.cjs.js",
"module ": "dist/calendardates.esm.js",
"description": "Get calendar dates for a given month - Mostly for creating a custom calendar control",
"scripts": {
"build": "rollup -c",
"bundlesize": "bundlesize",
"test": "yarn build && bundlesize && jest --coverage",
"test:coverage": "jest --coverage",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bundlesize": [
{
"path": "dist/calendardates.cjs.js",
"maxSize": "1 kB"
},
{
"path": "dist/calendardates.esm.js",
"maxSize": "1 kB"
}
],
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/plugin-external-helpers": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-regenerator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"babel-jest": "^28.1.3",
"bundlesize": "^0.18.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.20.0",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "13.0.3",
"prettier": "^2.7.1",
"regenerator-runtime": "^0.13.9",
"rollup": "2.77.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/dance2die/calendar-dates.git"
},
"keywords": [
"calendar",
"library",
"date",
"year",
"month",
"day",
"matrix"
],
"bugs": {
"url": "https://github.com/dance2die/calendar-dates/issues"
},
"homepage": "https://github.com/dance2die/calendar-dates#readme",
"contributors": [
{
"name": "ewolfe",
"email": "[email protected]",
"url": "https://medium.com/@ewolfe"
},
{
"name": "davefollett",
"url": "https://davefollett.io/"
}
]
}