forked from commenthol/date-holidays
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
225 lines (225 loc) · 6.66 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
{
"name": "date-holidays",
"version": "1.7.0",
"description": "worldwide holidays",
"keywords": [
"holidays",
"world"
],
"homepage": "https://github.com/commenthol/date-holidays",
"bugs": {
"url": "https://github.com/commenthol/date-holidays/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/date-holidays.git"
},
"license": "(ISC AND CC-BY-3.0)",
"author": "commenthol <[email protected]>",
"contributors": [
"0xflotus <[email protected]>",
"ash <[email protected]>",
"Ben Arwin <[email protected]>",
"Bilal Gültekin <[email protected]>",
"bogdanmarinescu <[email protected]>",
"Brandon Bay <[email protected]>",
"Christian Schinnerl <[email protected]>",
"damon02 <[email protected]>",
"David Álvarez Navarro <[email protected]>",
"Erlend Ellingsen <[email protected]>",
"Filip Staffa <[email protected]>",
"Francesco Ansanelli <[email protected]>",
"Germain <[email protected]>",
"germain-receeve <[email protected]>",
"Goran Martinjak <[email protected]>",
"Guillaume Bisch <[email protected]>",
"JAlexander <[email protected]>",
"James Dixon <[email protected]>",
"Jeff Hughes <[email protected]>",
"John-Olav Storvold <[email protected]>",
"Julian Krenge <[email protected]>",
"Kevin Samoei <[email protected]>",
"Long Nguyen <[email protected]>",
"Lukas Eipert <[email protected]>",
"Mauro Braggio <[email protected]>",
"Matthias Lösch <[email protected]>",
"Nils Mehlhorn <[email protected]>",
"Oscar Lagercrantz <[email protected]>",
"Petar Kovačević <[email protected]>",
"Philip Renich <[email protected]>",
"rbrasco <[email protected]>",
"Roman Hirsch <[email protected]>",
"Ryan Gerry <[email protected]>",
"Sean Riley <[email protected]>",
"Simon Victory <[email protected]>",
"Quennie <[email protected]>",
"Tiago <[email protected]>",
"Tim Keegan <[email protected]>",
"Tomas <[email protected]>",
"Wayne Parrott <[email protected]>",
"Wésley Queiroz <[email protected]>",
"westn <[email protected]>",
"Yoshio HANAWA <[email protected]>",
"Zacharias Erlandsson <[email protected]>",
"zbypy <[email protected]>"
],
"main": "lib",
"typings": "types",
"bin": {
"holidays2json": "./scripts/holidays2json.js"
},
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"all": "npm-run-all clean lint build yaml test doc:tree doc:attrib webpack",
"build": "babel -d lib src",
"changelog": "contributors && node scripts/gitlog",
"ci": "TEST_XXL=1 npm-run-all build yaml test",
"clean": "rimraf lib dist",
"clean:all": "npm-run-all clean clean:modules",
"clean:modules": "rimraf node_modules",
"doc:attrib": "node scripts/attributions.js",
"doc:tree": "node scripts/addtree.js",
"lint": "eslint --fix '**/*.js'",
"prepublishOnly": "npm run all",
"test": "npm-run-all test:*",
"test:ci": "mocha",
"test:ts": "dtslint types",
"watch": "watch-run -p data/countries/*.yaml npm run yaml",
"webpack": "webpack",
"yaml": "node scripts/holidays2json.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"break",
"feat",
"fix",
"chore",
"docs",
"refactor",
"revert",
"test"
]
],
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
],
"scope-case": [
0
]
}
},
"babel": {
"ignore": [
"./dist"
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-json-strings",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-function-sent",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions"
],
"presets": [
"@babel/preset-env"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"eslintConfig": {
"plugins": [
"standard"
],
"extends": "standard"
},
"mocha": {
"checkLeaks": true,
"colors": true,
"reporter": "dot",
"require": "@babel/register"
},
"dependencies": {
"date-holidays-parser": "^1.5.0",
"js-yaml": "^3.14.0",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"prepin": "^1.0.3"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-function-sent": "^7.10.4",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.5",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@mocha/contributors": "git+https://github.com/commenthol/contributors.git#semver:1.1.0-0",
"babel-loader": "^8.1.0",
"dtslint": "^3.6.12",
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"hashtree": "^0.7.0",
"husky": "^4.2.5",
"markedpp": "^1.0.2",
"mocha": "^8.0.1",
"npm-run-all": "^4.1.5",
"parallel-webpack": "^2.6.0",
"rimraf": "^3.0.2",
"typescript": "^3.9.7",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12"
},
"engines": {
"node": ">=4.0.0"
},
"maintainers": [
"commenthol <[email protected]>",
"Ryan Gerry <[email protected]>"
]
}