forked from BehindTheMath/KosherZmanim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.68 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
{
"name": "kosher-zmanim",
"version": "0.8.2",
"description": "A library for calculating zmanim, based on KosherJava.",
"author": "BehindTheMath",
"license": "LGPL-3.0",
"bugs": "BehindTheMath/KosherZmanim/issues",
"homepage": "BehindTheMath/KosherZmanim",
"repository": "BehindTheMath/KosherZmanim",
"main": "dist/kosher-zmanim.esm.js",
"types": "dist/kosher-zmanim.esm.d.ts",
"type": "module",
"scripts": {
"clean": "rimraf dist/* -g",
"build": "npm run clean && node esbuild.js && tsc && dts-bundle-generator -o dist/kosher-zmanim.esm.d.ts dist/types/kosher-zmanim.d.ts && rimraf dist/types && cp src/hebrewcalendar/limud/dataSets/hiloulah-en.json dist/hiloulah-en.json && cp src/hebrewcalendar/limud/dataSets/hiloulah-he.json dist/hiloulah-he.json",
"lint": "eslint --ext .ts src tests",
"test": "mocha",
"prepublishOnly": "npm run build"
},
"keywords": [
"zmanim",
"zman",
"kosherzmanim",
"kosher-zmanim",
"kosherjava"
],
"files": [
"dist/*"
],
"dependencies": {
"big.js": "^6.2.1",
"temporal-polyfill": "^0.2.5"
},
"devDependencies": {
"@types/big.js": "^6.2.2",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"chai": "^5.1.1",
"esbuild": "^0.23.1",
"esbuild-plugin-d.ts": "^1.3.0",
"eslint": "^9.9.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^10.7.3",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}