-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "easy-dates",
"description": "A tiny, zero-dependency utility library for working with static dates.",
"author": {
"name": "sandypockets",
"url": "https://sandypockets.dev"
},
"bugs": {
"url": "https://github.com/sandypockets/easy-dates/issues"
},
"version": "0.27.3",
"main": "dist/index.js",
"module": "dist/index.mjs",
"license": "MIT",
"scripts": {
"build": "node esbuild.js",
"lint": "eslint ./src && prettier ./src --write",
"test": "npm run lint && npm run build && jest --coverage",
"new": "node ./scripts/createNewFunctionFiles.js"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"babel-loader": "^9.1.3",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"jest": "^29.7.0",
"prettier": "3.2.5"
},
"homepage": "https://easy-dates.dev",
"repository": {
"type": "git",
"url": "https://github.com/sandypockets/easy-dates.git"
},
"keywords": [
"dates",
"date-fns",
"zero dependency dates",
"parse dates",
"moment",
"parser"
]
}