-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 2.01 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
{
"name": "dayjs-business-days2",
"version": "1.2.2",
"description": "Day.js plugin to add support for calculating dates only accounting for Business days",
"main": "dist/index.js",
"types": "typings/index.d.ts",
"author": "Wesley Reed",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"lint": "eslint src test typings --ext .ts,.js",
"lint:fix": "npm run lint -- --fix",
"test": "jest --config ./jest.config.js",
"test:watch": "npm run test -- --watchAll",
"test:coverage": "npm run test -- --coverage",
"prepare": "husky install && npm run build",
"prepublishOnly": "npm run build",
"preversion": "npm run lint",
"postversion": "git push && git push --tags",
"audit": "audit-ci --config .audit-ci.json",
"check-updates": "ncu --configFileName .check-updates.json",
"check-updates:fix": "ncu --configFileName .check-updates.json --upgrade --errorLevel 1",
"check-updates:all": "ncu --configFileName .check-updates.json --target latest --errorLevel 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/reediculous456/dayjs-business-days.git"
},
"keywords": [
"day.js",
"business",
"days",
"working",
"days",
"businessdays",
"workingdays"
],
"license": "MIT",
"files": [
"dist/**/*",
"typings/**/*",
"src/**/*"
],
"bugs": {
"url": "https://github.com/reediculous456/dayjs-business-days/issues"
},
"homepage": "https://github.com/reediculous456/dayjs-business-days#readme",
"dependencies": {
"dayjs": "^1.11.10"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"audit-ci": "^6.6.1",
"eslint": "^8.52.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"npm-check-updates": "^16.14.6",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
}
}