forked from commenthol/date-holidays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
155 lines (155 loc) · 4.7 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
{
"name": "date-holidays",
"version": "1.4.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 <commenthol@gmail.com>",
"contributors": [
"0xflotus <0xflotus@gmail.com>",
"ash <makingahabit@gmail.com>",
"Bilal Gültekin <bilal@Bilals-MacBook-Pro.local>",
"Christian Schinnerl <Schinnerl.Christian@gmail.com>",
"David Álvarez Navarro <david16an@gmail.com>",
"Erlend Ellingsen <erlend.ame@gmail.com>",
"Francesco Ansanelli <f.ansanelli@solution-g.com>",
"Goran Martinjak <goran@netgen.hr>",
"Guillaume Bisch <guillaume@sqrd.com>",
"James Dixon <jim.w.dixon@gmail.com>",
"Jeff Hughes <43132199+jwh-hutchison@users.noreply.github.com>",
"John-Olav Storvold <johsto@knowit.no>",
"Lukas Eipert <git@leipert.io>",
"Mauro Braggio <m.braggio@e-time.it>",
"Matthias Lösch <mlo@codiac.de>",
"Oscar Lagercrantz <oscar.lagercrantz@gmail.com>",
"Roman Hirsch <r.hirsch@brendow.de>",
"Ryan Gerry <gerryster@gmail.com>",
"Quennie <simply.me.queeny@gmail.com>",
"Tiago <tiago.peliciari@gmail.com>",
"Wayne Parrott <wayne.parrott@reblcorp.com>",
"Wésley Queiroz <wesleycoder@gmail.com>",
"Yoshio HANAWA <y@hnw.jp>"
],
"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",
"clean": "rimraf lib dist",
"clean:all": "npm-run-all clean clean:modules",
"clean:modules": "rimraf node_modules",
"doc:tree": "node scripts/addtree.js",
"doc:attrib": "node scripts/attributions.js",
"lint": "eslint --fix '**/*.js'",
"prepublishOnly": "npm run all",
"ci": "npm-run-all build yaml test",
"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"
],
"presets": [
"@babel/preset-env"
],
"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"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"eslintConfig": {
"extends": "standard",
"plugins": [
"standard"
]
},
"dependencies": {
"date-holidays-parser": "^1.4.0",
"js-yaml": "^3.13.1",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"prepin": "^1.0.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.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.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"babel-loader": "^8.0.6",
"dtslint": "^0.7.6",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"hashtree": "^0.7.0",
"markedpp": "^1.0.1",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"parallel-webpack": "^2.3.0",
"rimraf": "^2.6.3",
"typescript": "^3.5.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.32.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2"
},
"engines": {
"node": ">=4.0.0"
},
"maintainers": [
"commenthol <commenthol@gmail.com>",
"Ryan Gerry <rgerry@bluemarblepayroll.com>"
]
}