-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 953 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
38
39
40
41
42
43
{
"name": "ts-business-time",
"version": "1.1.2",
"description": "Business Time / Market Hours logic for TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc"
},
"repository": "https://github.com/hughgrigg/ts-business-time",
"author": "Hugh Grigg",
"license": "MIT",
"private": false,
"dependencies": {
"@types/node": "^10.12.21",
"big.js": "^5",
"moment-timezone": "^0.5.23"
},
"devDependencies": {
"@types/big.js": "^4",
"@types/jest": "^23.3.13",
"@types/luxon": "^1.10.2",
"@types/moment": "^2",
"@types/moment-timezone": "^0.5.10",
"jest": "^23.0",
"prettier": "^1",
"rimraf": "^2.6",
"ts-jest": "^23",
"tslint": "^5",
"typescript": "^3.3"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!tests/**",
"!**/*test.ts"
]
}
}