forked from commenthol/date-holidays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
161 lines (161 loc) · 4.97 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
{
"name": "date-holidays",
"version": "1.4.6",
"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]>",
"Bilal Gültekin <[email protected]>",
"Christian Schinnerl <[email protected]>",
"David Álvarez Navarro <[email protected]>",
"Erlend Ellingsen <[email protected]>",
"Francesco Ansanelli <[email protected]>",
"Goran Martinjak <[email protected]>",
"Guillaume Bisch <[email protected]>",
"James Dixon <[email protected]>",
"Jeff Hughes <[email protected]>",
"John-Olav Storvold <[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]>",
"rbrasco <[email protected]>",
"Roman Hirsch <[email protected]>",
"Ryan Gerry <[email protected]>",
"Sean Riley <[email protected]>",
"Quennie <[email protected]>",
"Tiago <[email protected]>",
"Wayne Parrott <[email protected]>",
"Wésley Queiroz <[email protected]>",
"Yoshio HANAWA <[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",
"ci": "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"
},
"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": {
"extends": "standard",
"plugins": [
"standard"
]
},
"dependencies": {
"date-holidays-parser": "^1.4.1",
"js-yaml": "^3.13.1",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"prepin": "^1.0.3"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"babel-loader": "^8.0.6",
"dtslint": "^1.0.2",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"hashtree": "^0.7.0",
"markedpp": "^1.0.1",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"parallel-webpack": "^2.4.0",
"rimraf": "^3.0.0",
"typescript": "^3.6.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10"
},
"engines": {
"node": ">=4.0.0"
},
"maintainers": [
"commenthol <[email protected]>",
"Ryan Gerry <[email protected]>"
]
}