This repository has been archived by the owner on Apr 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.28 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
{
"name": "nugit-datetime-utils",
"version": "7.0.0",
"description": "Shared datetime utils library",
"main": "lib/nugit-datetime-utils.cjs.js",
"module": "lib/nugit-datetime-utils.esm.js",
"browser": "lib/nugit-datetime-utils.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/nugit/datetime-utils.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nugit/datetime-utils/issues"
},
"homepage": "https://github.com/nugit/datetime-utils#readme",
"engines": {
"node": ">=14.18.0"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.10",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-flow": "^7.16.7",
"@babel/register": "^7.16.9",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"babel-jest": "^27.4.6",
"date-fns": "^2.28.0",
"eslint": "^7.32.0",
"eslint-config-nugit": "^2.0.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-fb-flow": "^0.0.4",
"eslint-plugin-flowtype": "^6.1.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"flow-bin": "^0.174.1",
"husky": "^7.0.4",
"jest": "^27.4.7",
"rollup": "^2.64.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^18.0.1",
"semantic-release-slack-bot": "^3.4.1",
"sinon": "^12.0.1",
"timezone-mock": "^1.3.0"
},
"peerDependencies": {
"date-fns": "^2.28.0"
},
"scripts": {
"build": "rollup -c ./config/rollup.config.js",
"prepublish": "yarn build",
"test": "jest",
"test-watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "eslint --cache . --ext .js,.flow",
"flow": "flow",
"deploy": "semantic-release",
"deploy:local": "CI=true LOCAL_RELEASE=true semantic-release",
"prepare": "husky install $PWD/.husky"
},
"files": [
"lib",
"src"
]
}