-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.59 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
62
63
64
65
66
67
{
"name": "usa-bank-working-day",
"version": "1.0.0",
"description": "calculate U.S.A government bank working day without outer dependencies",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist",
"src"
],
"types": "dist/esm/index.d.ts",
"eslintConfig": {},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"scripts": {
"test": "clear;jest --collectCoverage",
"rollup": "rollup -c -w --watch.exclude dist --watch.exclude test --watch.exclude node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/C-ra-ZY/usaworkingday.git"
},
"keywords": [
"usa",
"bank",
"working",
"day"
],
"author": "Carl, Chen",
"license": "ISC",
"bugs": {
"url": "https://github.com/C-ra-ZY/usaworkingday/issues"
},
"homepage": "https://github.com/C-ra-ZY/usaworkingday#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@types/jest": "^28.1.7",
"cross-env": "^5.2.0",
"jest": "^28.1.3",
"rollup": "^2.77.2",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"date-exists": "^1.0.1",
"eslint-plugin-jest": "^26.8.3"
}
}