-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.28 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
{
"name": "@hebcal/noaa",
"version": "0.9.0",
"description": "sunrise and sunset via NOAA algorithm with elevation, based on KosherJava",
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"contributors": [
"BehindTheMath (https://github.com/BehindTheMath)",
"Eliyahu Hershfeld (https://github.com/KosherJava)",
"Benny Powers (https://github.com/bennypowers)"
],
"license": "LGPL-2.1",
"repository": {
"type": "git",
"url": "git+https://github.com/hebcal/noaa.git"
},
"bugs": {
"url": "https://github.com/hebcal/noaa/issues"
},
"homepage": "https://hebcal.github.io/api/noaa/",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"docs": "typedoc",
"test": "ava",
"build": "tsc",
"clean": "gts clean",
"fix": "gts fix",
"prepare": "npm run build",
"pretest": "npm run build"
},
"keywords": [
"zmanim",
"zman",
"kosherzmanim",
"kosher-zmanim",
"kosherjava"
],
"files": [
"dist/*"
],
"devDependencies": {
"@types/node": "22.10.5",
"ava": "^6.2.0",
"gts": "^5.3.1",
"typedoc": "^0.27.6",
"typescript": "^5.7.3"
},
"dependencies": {
"temporal-polyfill": "^0.2.5"
}
}