-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
61 lines (61 loc) · 1.87 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
{
"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": "https://github.com/BehindTheMath/KosherZmanim",
"repository": "BehindTheMath/KosherZmanim",
"main": "dist/lib-cjs/kosher-zmanim.js",
"types": "dist/types/kosher-zmanim.d.ts",
"module": "dist/lib-es6/kosher-zmanim.js",
"scripts": {
"clean": "rimraf ./dist/*",
"build": "npm run clean && npm run build:all && npm run webpack",
"build:all": "npm run build:cjs && npm run build:es6 && npm run build:types",
"build:cjs": "tsc -p ./src/",
"build:es6": "tsc -p ./src/tsconfig-es6.json",
"build:types": "tsc -p ./src/tsconfig-types.json",
"lint": "eslint --ext .ts src tests",
"test": "TS_NODE_PROJECT=tests/tsconfig.json mocha -r ts-node/register/transpile-only tests/**/*.test.ts",
"prepublishOnly": "npm run build",
"webpack": "webpack"
},
"keywords": [
"zmanim",
"zman",
"kosherzmanim",
"kosher-zmanim",
"kosherjava"
],
"unpkg": "dist/kosher-zmanim.min.js",
"files": [
"dist/*"
],
"dependencies": {
"big.js": "^6.1.1",
"luxon": "^1.26.0"
},
"devDependencies": {
"@types/big.js": "^6.0.2",
"@types/chai": "^4.2.18",
"@types/luxon": "^1.26.5",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.44",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.4.0",
"rimraf": "^3.0.2",
"ts-loader": "^8.2.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
}
}