-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 1.94 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@shelf/datetime",
"version": "2.5.0",
"description": "Shelf dates library",
"keywords": [
"dates",
"date",
"time",
"datetime",
"dayjs",
"day.js",
"day"
],
"license": "MIT",
"author": {
"name": "Shelf",
"email": "vlad@shelf.io",
"url": "https://shelf.io"
},
"sideEffects": [
"lib/utils/importLocales.js"
],
"type": "module",
"exports": "./lib/index.js",
"module": "./lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"analyze-bundle": "yarn build && size-limit --why",
"build": "rm -rf lib/ && tsc",
"coverage": "yarn test --coverage",
"lint": "yarn lint:ci --fix",
"lint:ci": "eslint . --ext .js,.ts,.json",
"lint:size": "size-limit",
"prepack": "yarn build",
"prepare": "husky",
"test": "jest",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"*.{html,md,yml}": "prettier --write",
"*.{js,ts,json}": "eslint --fix",
".circleci/config.yml": ".husky/validate-circleci-config.sh"
},
"prettier": "@shelf/prettier-config",
"eslintConfig": {
"extends": "@shelf/eslint-config/typescript"
},
"dependencies": {
"dayjs": "1.11.13"
},
"devDependencies": {
"@shelf/eslint-config": "3.15.1",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.1.0",
"@size-limit/esbuild-why": "11.1.6",
"@size-limit/preset-small-lib": "11.1.6",
"@types/jest": "29.5.14",
"eslint": "8.57.1",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.4.1",
"prettier": "3.4.2",
"size-limit": "11.1.6",
"ts-jest": "29.2.5",
"ts-jest-resolver": "2.0.1",
"typescript": "5.7.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"size-limit": [
{
"path": "lib/index.js",
"limit": "11.04 KB"
},
{
"path": "lib/index.js",
"import": "{addMonths}",
"limit": "3.33 KB"
}
]
}