-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
68 lines (68 loc) · 1.62 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
{
"name": "date-io",
"private": true,
"version": "1.0.0",
"description": "Abstraction over common javascript date management libraries",
"main": "index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "TZ=UTC NODE_ICU_DATA='./node_modules/full-icu' jest --watch",
"test:coverage": "TZ=UTC NODE_ICU_DATA='./node_modules/full-icu' jest --coverage",
"benchmark": "lerna run benchmark",
"release": "yarn test:coverage && yarn build && lerna publish",
"build": "lerna run build --parallel",
"prettier": "prettier --write './packages/**/*.{js,jsx,ts,tsx,json,css,md,mdx}'",
"build:readme": "node scripts/buildReadme.js"
},
"keywords": [
"date",
"time",
"date-io",
"picker",
"date-fns",
"moment",
"luxon",
"dayjs"
],
"author": {
"name": "Dmitriy Kovalenko",
"email": "dmtr.kovalenko@outlook.com"
},
"license": "MIT",
"dependencies": {
"@js-joda/locale": "^4.0.0",
"@types/jest": "^26.0.0",
"cldr-data": "^36.0.0",
"cldrjs": "^0.5.5",
"codecov": "^3.6.1",
"dayjs": "^1.8.17",
"full-icu": "^1.3.0",
"husky": "^5.0.9",
"jest": "29.6.1",
"lerna": "^3.19.0",
"lint-staged": "^10.0.0",
"prettier": "^2.0.1",
"rollup": "^2.0.2",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,json,css,md}": [
"prettier --write"
],
"*.{ts,tsx}": [
"yarn build:readme"
]
},
"devDependencies": {
"rollup-plugin-node-resolve": "^5.2.0"
}
}