-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "react-h5-calendar",
"description": "react-h5-calendar React component",
"version": "1.0.6",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && npm publish",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"publish-lib": "npm run build && npm publish"
},
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib",
"es",
"public"
],
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"homepage": "https://github.com/kokiy/react-h5-calendar",
"license": "MIT",
"repository": "https://github.com/kokiy/react-h5-calendar",
"keywords": [
"react-component",
"react-h5-calendar",
"react-mobile-calendar"
],
"dependencies": {
"dayjs": "^1.10.4",
"normalize.css": "^8.0.1",
"react": "^17.0.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@umijs/fabric": "^2.5.6",
"@umijs/test": "^3.3.7",
"conventional-changelog-cli": "^2.1.1",
"dumi": "^1.1.3",
"dumi-theme-mobile": "^1.0.3",
"eslint-plugin-json": "^2.1.2",
"father-build": "^1.19.1",
"gh-pages": "^3.0.0",
"husky": "^4.3.8",
"lint-staged": "^10.0.7",
"prettier": "^2.2.1"
}
}