-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.85 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
{
"name": "date-holidays-ical",
"version": "2.1.0",
"description": "Generate ical files from date-holidays data",
"keywords": [
"holidays",
"ical",
"vcalendar",
"world"
],
"homepage": "https://github.com/commenthol/date-holidays-ical#readme",
"bugs": {
"url": "https://github.com/commenthol/date-holidays-ical/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/date-holidays-ical.git"
},
"license": "ISC",
"author": "commenthol <[email protected]>",
"maintainers": [
"commenthol <[email protected]>"
],
"type": "module",
"exports": {
".": {
"import": "./src/index.js",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./lib/index.cjs",
"module": "./src/index.js",
"bin": {
"holidays-ical": "bin/holidays-ical.cjs"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin",
"src",
"lib"
],
"scripts": {
"all": "npm-run-all clean lint build test",
"build": "rollup -c",
"ci": "npm run all",
"clean": "rimraf lib coverage .nyc_output",
"clean:all": "npm-run-all clean clean:node_modules",
"clean:node_modules": "rimraf node_modules",
"coverage": "c8 -r text -r html npm run test:ci",
"lint": "eslint \"**/*.js\"",
"prepublishOnly": "npm run all",
"test": "mocha"
},
"dependencies": {
"date-holidays": "^3.23.17"
},
"devDependencies": {
"c8": "^10.1.3",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^11.1.0",
"npm-run-all2": "^7.0.2",
"rimraf": "^6.0.1",
"rollup": "^4.29.1"
},
"engines": {
"node": ">=12.0.0"
}
}