date-holidays 3.12.1 → 3.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/data/holidays.json +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/umd.min.js +1 -1
- package/dist/umd.min.js.map +1 -1
- package/lib/data.cjs +1 -1
- package/package.json +8 -7
- package/src/data.js +1 -1
package/lib/data.cjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "date-holidays",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.2",
|
|
4
4
|
"description": "worldwide holidays",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"holidays",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"JAlexander <roodrallec@users.noreply.github.com>",
|
|
49
49
|
"James Dixon <jim.w.dixon@gmail.com>",
|
|
50
50
|
"Jeff Hughes <43132199+jwh-hutchison@users.noreply.github.com>",
|
|
51
|
+
"Jérôme Vasseur <jerome.vasseur@thetribe.io>",
|
|
51
52
|
"jk-12345 <33206139+jk-12345@users.noreply.github.com>",
|
|
52
53
|
"John-Olav Storvold <johsto@knowit.no>",
|
|
53
54
|
"Joshua Rippon <joshuarippon1@gmail.com>",
|
|
@@ -175,7 +176,6 @@
|
|
|
175
176
|
},
|
|
176
177
|
"dependencies": {
|
|
177
178
|
"date-holidays-parser": "^3.2.3",
|
|
178
|
-
"eslint-plugin-yml": "^0.11.0",
|
|
179
179
|
"js-yaml": "^4.1.0",
|
|
180
180
|
"lodash.omit": "^4.5.0",
|
|
181
181
|
"lodash.pick": "^4.4.0",
|
|
@@ -185,27 +185,28 @@
|
|
|
185
185
|
"@babel/cli": "^7.16.0",
|
|
186
186
|
"@babel/core": "^7.16.0",
|
|
187
187
|
"@babel/polyfill": "^7.12.1",
|
|
188
|
-
"@babel/preset-env": "^7.16.
|
|
188
|
+
"@babel/preset-env": "^7.16.4",
|
|
189
189
|
"@commitlint/cli": "^13.2.1",
|
|
190
190
|
"@commitlint/config-conventional": "^13.2.0",
|
|
191
191
|
"@mocha/contributors": "git+https://github.com/commenthol/contributors.git#semver:1.1.0-0",
|
|
192
192
|
"babel-loader": "^8.2.3",
|
|
193
|
-
"dtslint": "^4.2.
|
|
193
|
+
"dtslint": "^4.2.1",
|
|
194
194
|
"eslint": "^7.32.0",
|
|
195
195
|
"eslint-config-standard": "^16.0.3",
|
|
196
196
|
"eslint-plugin-import": "^2.25.3",
|
|
197
197
|
"eslint-plugin-node": "^11.1.0",
|
|
198
198
|
"eslint-plugin-promise": "^5.1.1",
|
|
199
|
+
"eslint-plugin-yml": "^0.12.0",
|
|
199
200
|
"hashtree": "^0.7.0",
|
|
200
201
|
"husky": "^7.0.4",
|
|
201
202
|
"markedpp": "^1.0.4",
|
|
202
203
|
"mocha": "^9.1.3",
|
|
203
204
|
"npm-run-all": "^4.1.5",
|
|
204
205
|
"rimraf": "^3.0.2",
|
|
205
|
-
"rollup": "^2.60.
|
|
206
|
-
"typescript": "^4.
|
|
206
|
+
"rollup": "^2.60.1",
|
|
207
|
+
"typescript": "^4.5.2",
|
|
207
208
|
"watch-run": "^1.2.5",
|
|
208
|
-
"webpack": "^5.64.
|
|
209
|
+
"webpack": "^5.64.4",
|
|
209
210
|
"webpack-bundle-analyzer": "^4.5.0",
|
|
210
211
|
"webpack-cli": "^4.9.1"
|
|
211
212
|
},
|
package/src/data.js
CHANGED