Skip to content

Commit ac97e7e

Browse files
committed
v3.0.0
1 parent 070a0cd commit ac97e7e

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

package.json

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
{
22
"name": "rc-checkbox",
3-
"version": "2.3.2",
3+
"version": "3.0.0",
44
"description": "checkbox ui component for react",
55
"keywords": [
66
"react",
77
"react-component",
88
"react-checkbox",
99
"checkbox"
1010
],
11+
"homepage": "http://github.com/react-component/checkbox",
12+
"bugs": {
13+
"url": "http://github.com/react-component/checkbox/issues"
14+
},
15+
"repository": {
16+
"type": "git",
17+
"url": "[email protected]:react-component/checkbox.git"
18+
},
19+
"license": "MIT",
1120
"main": "lib/index.js",
1221
"module": "es/index.js",
1322
"typings": "es/index.d.ts",
@@ -16,25 +25,24 @@
1625
"es",
1726
"lib"
1827
],
19-
"homepage": "http://github.com/react-component/checkbox",
20-
"repository": {
21-
"type": "git",
22-
"url": "[email protected]:react-component/checkbox.git"
23-
},
24-
"bugs": {
25-
"url": "http://github.com/react-component/checkbox/issues"
26-
},
27-
"license": "MIT",
2828
"scripts": {
29-
"start": "dumi dev",
3029
"build": "dumi build",
3130
"compile": "father build && lessc assets/index.less assets/index.css",
31+
"coverage": "jest --coverage",
3232
"gh-pages": "npm run build && father doc deploy -d .docs",
33-
"prepublishOnly": "npm run compile && np --yolo --no-publish",
3433
"lint": "eslint . --ext='jsx'",
35-
"test": "jest",
36-
"coverage": "jest --coverage",
37-
"prepare": "husky install && dumi setup"
34+
"prepare": "husky install && dumi setup",
35+
"prepublishOnly": "npm run compile && np --yolo --no-publish",
36+
"start": "dumi dev",
37+
"test": "jest"
38+
},
39+
"lint-staged": {
40+
"*.{js,jsx,less,md,json}": [
41+
"prettier --write"
42+
],
43+
"*.ts?(x)": [
44+
"prettier --parser=typescript --write"
45+
]
3846
},
3947
"dependencies": {
4048
"@babel/runtime": "^7.10.1",
@@ -67,14 +75,6 @@
6775
"ts-node": "^10.9.1",
6876
"typescript": "^4.9.4"
6977
},
70-
"lint-staged": {
71-
"*.{js,jsx,less,md,json}": [
72-
"prettier --write"
73-
],
74-
"*.ts?(x)": [
75-
"prettier --parser=typescript --write"
76-
]
77-
},
7878
"peerDependencies": {
7979
"react": ">=16.9.0",
8080
"react-dom": ">=16.9.0"

0 commit comments

Comments
 (0)