forked from dmtrKovalenko/date-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.38 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
{
"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"
},
"keywords": [
"date",
"time",
"date-io",
"picker",
"date-fns",
"moment",
"luxon",
"dayjs"
],
"author": {
"name": "Dmitriy Kovalenko",
"email": "dmtr.kovalenko@outlook.com"
},
"license": "MIT",
"dependencies": {
"@types/jest": "^23.3.14",
"codecov": "^3.6.1",
"dayjs": "^1.8.16",
"full-icu": "^1.3.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lerna": "^3.17.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"rollup": "^1.23.1",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"rollup-plugin-node-resolve": "^5.2.0"
}
}