-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.05 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
{
"name": "is-office-hours",
"description": "Determine whether a given date is within office hours",
"version": "0.2.0",
"author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",
"bugs": "https://github.com/JamieMason/is-office-hours/issues",
"contributors": [
"Jamie Mason (https://github.com/JamieMason)"
],
"devDependencies": {
"@types/jest": "24.0.11",
"expect-more-jest": "2.4.1",
"jest": "24.3.1",
"prettier": "1.16.4",
"rimraf": "2.6.3",
"ts-jest": "24.0.0",
"tslint": "5.13.1",
"typescript": "3.3.3333"
},
"files": [
"dist"
],
"homepage": "https://github.com/JamieMason/is-office-hours#readme",
"keywords": [],
"license": "MIT",
"main": "is-office-hours",
"repository": "JamieMason/is-office-hours",
"scripts": {
"build": "tsc --project .",
"format": "prettier --write './src/**/*.ts'",
"lint": "tslint --fix --project ./tsconfig.json",
"prebuild": "rimraf dist",
"prelint": "npm run format",
"prepack": "npm run build",
"test": "jest"
}
}