@hebcal/noaa 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +504 -0
- package/README.md +13 -0
- package/dist/cjs/index.js +1067 -0
- package/dist/esm/index.js +1062 -0
- package/dist/index.d.ts +710 -0
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hebcal/noaa",
|
|
3
|
+
"version": "0.8.0",
|
|
4
|
+
"description": "sunrise and sunset via NOAA algorithm with elevation, based on KosherJava",
|
|
5
|
+
"author": "Michael J. Radwin (https://github.com/mjradwin)",
|
|
6
|
+
"contributors": [
|
|
7
|
+
"BehindTheMath (https://github.com/BehindTheMath)",
|
|
8
|
+
"Eliyahu Hershfeld (https://github.com/KosherJava)"
|
|
9
|
+
],
|
|
10
|
+
"license": "LGPL-3.0",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/hebcal/noaa.git"
|
|
14
|
+
},
|
|
15
|
+
"main": "dist/cjs/index.js",
|
|
16
|
+
"module": "dist/esm/index.js",
|
|
17
|
+
"typings": "dist/index.d.ts",
|
|
18
|
+
"scripts": {
|
|
19
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
20
|
+
"build": "npm run build:es6 && npm run build:cjs && npm run build:types",
|
|
21
|
+
"build:cjs": "tsc",
|
|
22
|
+
"build:es6": "tsc -p ./tsconfig-es6.json",
|
|
23
|
+
"build:types": "tsc -p ./tsconfig-types.json",
|
|
24
|
+
"lint": "gts lint",
|
|
25
|
+
"clean": "gts clean",
|
|
26
|
+
"compile": "tsc",
|
|
27
|
+
"fix": "gts fix",
|
|
28
|
+
"prepare": "npm run compile",
|
|
29
|
+
"pretest": "npm run compile",
|
|
30
|
+
"posttest": "npm run lint"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"zmanim",
|
|
34
|
+
"zman",
|
|
35
|
+
"kosherzmanim",
|
|
36
|
+
"kosher-zmanim",
|
|
37
|
+
"kosherjava"
|
|
38
|
+
],
|
|
39
|
+
"files": [
|
|
40
|
+
"dist/*"
|
|
41
|
+
],
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/node": "20.8.2",
|
|
44
|
+
"gts": "^5.2.0",
|
|
45
|
+
"typescript": "^5.2.2"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"temporal-polyfill": "^0.1.1"
|
|
49
|
+
}
|
|
50
|
+
}
|