-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 916 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
{
"name": "dayjs-recur",
"version": "1.0.1",
"description": "A Day.js plugin for matching and generating recurring dates.",
"main": "index.min.js",
"module": "index.min.js",
"license": "MIT",
"author": "Fraser Hamilton",
"scripts": {
"build": "rollup --config",
"minify": "terser build/index.js --compress --mangle --output index.min.js",
"build:minify": "yarn build && yarn minify",
"test": "jest --watch"
},
"keywords": [
"day.js",
"dayjs",
"date",
"recur",
"match"
],
"repository": {
"type": "git",
"url": "https://github.com/FraserHamilton/dayjs-recur.git"
},
"files": [
"index.min.js"
],
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"babel-jest": "^26.1.0",
"dayjs": "^1.10.8",
"jest": "^27.5.1",
"prettier": "^2.0.5",
"rollup": "^2.18.0",
"terser": "^4.8.0"
}
}