-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 876 Bytes
/
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
{
"name": "biztime",
"version": "1.0.4",
"description": "Determine if a time is during business hours.",
"keywords": [
"time",
"business",
"hours"
],
"homepage": "https://github.com/johnpuaoi/biztime",
"bugs": {
"url": "https://github.com/johnpuaoi/biztimes",
"email": "[email protected]"
},
"main": "BizTime.js",
"scripts": {
"dev": "tsc -w",
"tests:dev": "tsc -w -p tsconfig.tests.json"
},
"repository": {
"type": "git",
"url": "https://github.com/johnpuaoi/biztime"
},
"author": "John Puaoi <[email protected]> (johnpuaoi.tech)",
"license": "MIT",
"private": false,
"engines": {
"node": ">=14.0.0"
},
"engineStrict": true,
"devDependencies": {
"eslint-config-typescript": "^3.0.0",
"ts-loader": "^9.2.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
}
}