-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.71 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
{
"name": "@hebcal/rest-api",
"version": "6.1.0",
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"keywords": [
"hebcal"
],
"description": "Jewish holidays and Hebrew calendar as plain JSON objects and CSV export",
"engines": {
"node": ">= 18.0.0"
},
"module": "./dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
},
"./dist/esm/*": "./dist/esm/*.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/hebcal/hebcal-rest-api.git"
},
"bugs": {
"url": "https://github.com/hebcal/hebcal-rest-api/issues"
},
"homepage": "https://hebcal.github.io/api/rest-api/",
"dependencies": {
"@hebcal/core": "^5.8.3",
"@hebcal/hdate": "^0.12.0",
"@hebcal/leyning": "^9.0.2"
},
"scripts": {
"build:rollup": "rollup -c",
"build": "npm run build:rollup",
"prepublish": "npm run build",
"pretest": "npm run build",
"docs": "typedoc",
"lint": "gts lint",
"coverage": "jest --coverage",
"clean": "gts clean",
"fix": "gts fix",
"test": "jest"
},
"license": "BSD-2-Clause",
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@hebcal/learning": "^5.1.2",
"@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",
"gts": "^5.3.1",
"jest": "^29.7.0",
"rollup": "^4.28.1",
"typedoc": "^0.27.3",
"typescript": "^5.7.2"
}
}