forked from react-component/picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.35 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "rc-picker",
"version": "2.6.11",
"description": "React date & time picker",
"keywords": [
"react",
"react-component",
"react-picker"
],
"main": "./lib/index",
"module": "./es/index",
"files": [
"assets/*.css",
"assets/*.less",
"es",
"lib",
"dist"
],
"homepage": "https://react-component.github.io/picker",
"repository": {
"type": "git",
"url": "[email protected]:react-component/picker.git"
},
"bugs": {
"url": "http://github.com/react-component/picker/issues"
},
"license": "MIT",
"scripts": {
"start": "dumi dev",
"build": "dumi build",
"compile": "father build && lessc assets/index.less assets/index.css",
"gh-pages": "npm run build && father doc deploy",
"prepublishOnly": "npm run compile && np --yolo --no-publish",
"lint": "eslint src/ --ext .ts,.tsx,.jsx,.js,.md",
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "father test",
"coverage": "father test --coverage",
"now-build": "npm run build"
},
"dependencies": {
"@babel/runtime": "^7.10.1",
"classnames": "^2.2.1",
"date-fns": "2.x",
"dayjs": "1.x",
"moment": "^2.24.0",
"rc-trigger": "^5.0.4",
"rc-util": "^5.4.0",
"shallowequal": "^1.1.0"
},
"engines": {
"node": ">=8.x"
},
"devDependencies": {
"@testing-library/react": "^12",
"@types/classnames": "^2.2.9",
"@types/enzyme": "^3.10.3",
"@types/jest": "^26.0.0",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/shallowequal": "^1.1.1",
"@umijs/fabric": "^2.0.8",
"coveralls": "^3.0.6",
"cross-env": "^7.0.2",
"dumi": "^1.1.37",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.4.0",
"eslint": "~7.32.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-jest": "^26.8.2",
"eslint-plugin-react-hooks": "^4.0.2",
"eslint-plugin-unicorn": "^40.0.0",
"father": "^2.13.4",
"glob": "^7.2.0",
"less": "^3.10.3",
"mockdate": "^3.0.2",
"np": "^7.1.0",
"prettier": "^2.0.5",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"typescript": "^4.0.3"
},
"cnpm": {
"mode": "npm"
},
"tnpm": {
"mode": "npm"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}