forked from react-component/time-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "rc-time-picker",
"version": "4.0.0-alpha.2",
"description": "React TimePicker",
"keywords": [
"react",
"react-time-picker",
"react-component",
"timepicker",
"time-picker",
"ui component",
"ui",
"component"
],
"files": [
"lib",
"es",
"assets/*.css",
"assets/*.less",
"index.d.ts"
],
"main": "lib/index",
"module": "es/index",
"homepage": "http://github.com/react-component/time-picker",
"author": "wuzhao.mail@gmail.com",
"repository": {
"type": "git",
"url": "git@github.com:react-component/time-picker.git"
},
"bugs": {
"url": "http://github.com/react-component/time-picker/issues"
},
"license": "MIT",
"dependencies": {
"classnames": "2.x",
"moment": "2.x",
"raf": "^3.4.1",
"rc-trigger": "^4.0.0-alpha.4"
},
"devDependencies": {
"cross-env": "^6.0.0",
"enzyme": "^3.8.0",
"enzyme-to-json": "^3.4.0",
"father": "^2.24.1",
"np": "^5.0.3",
"rc-util": "^4.11.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development father doc dev --storybook",
"build": "father doc build --storybook",
"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/ examples/ --ext .tsx,.ts,.jsx,.js",
"test": "father test",
"coverage": "father test --coverage",
"now-build": "npm run build"
}
}