-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
106 lines (106 loc) · 2.91 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
{
"name": "@hebcal/core",
"version": "5.7.7",
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"contributors": [
"Eyal Schachter (https://github.com/Scimonster)",
"Danny Sadinoff (https://github.com/dsadinoff)",
"Yisroel Yakovson (https://github.com/YizYah)",
"Schabse Laks (https://github.com/SLaks)",
"Benny Powers (https://github.com/bennypowers)"
],
"keywords": [
"hebcal",
"hebrew",
"calendar",
"jewish",
"holidays",
"chagim",
"sedra",
"date",
"dafyomi",
"zemanim",
"zmanim"
],
"description": "A perpetual Jewish Calendar API",
"main": "./dist/index.cjs",
"module": "./dist/esm/index.js",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/index.cjs",
"types": "./dist/esm/index.d.ts"
},
"./dist/esm/*": "./dist/esm/*.js"
},
"typings": "./dist/esm/index.d.ts",
"engines": {
"node": ">= 16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hebcal/hebcal-es6.git"
},
"bugs": {
"url": "https://github.com/hebcal/hebcal-es6/issues"
},
"files": [
"dist"
],
"scripts": {
"build:rollup": "rollup -c",
"size-demo:rollup": "rollup -c size-demo/rollup.config.ts --configPlugin typescript",
"size-demo": "npm run build && npm run size-demo:rollup",
"build": "npm run po2json && npm run version && npm run build:rollup --production",
"prepublish": "npm run build",
"version": "node ./version.cjs package.json src/pkgVersion.ts",
"po2json": "node ./po2json.cjs po/he.po po/ashkenazi.po",
"docs": "typedoc",
"pretest": "npm run build",
"lint": "gts lint",
"coverage": "jest --coverage",
"test": "jest",
"clean": "gts clean",
"fix": "gts fix"
},
"license": "GPL-2.0",
"overrides": {
"[email protected]": {
"babel-plugin-macros": "3.1.0"
}
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/register": "^7.25.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"core-js": "^3.39.0",
"gts": "^6.0.2",
"jest": "^29.7.0",
"pretty-bytes": "^6.1.1",
"rollup": "^4.24.4",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-visualizer": "^5.12.0",
"ttag-cli": "^1.10.12",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@hebcal/hdate": "^0.12.0",
"@hebcal/noaa": "^0.8.14",
"quick-lru": "^6.1.2",
"temporal-polyfill": "^0.2.5",
"tslib": "^2.8.1"
}
}