diff options
author | 崖鹰 <zhao.wuz@alipay.com> | 2015-11-13 11:33:48 +0800 |
---|---|---|
committer | 崖鹰 <zhao.wuz@alipay.com> | 2015-11-13 11:33:48 +0800 |
commit | 02de449a0474765a4796fa607e7e3922252f574f (patch) | |
tree | dc37faf2f610343112ea1fc3707ad188092bd031 /package.json | |
parent | 1f336fabc9135ac971e53d9c2ae407db69b8f096 (diff) | |
download | time-picker-02de449a0474765a4796fa607e7e3922252f574f.tar.gz time-picker-02de449a0474765a4796fa607e7e3922252f574f.tar.zst time-picker-02de449a0474765a4796fa607e7e3922252f574f.zip |
release 0.1.0
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..3f7b765 --- /dev/null +++ b/package.json | |||
@@ -0,0 +1,66 @@ | |||
1 | { | ||
2 | "name": "rc-timepicker", | ||
3 | "version": "0.1.0", | ||
4 | "description": "React Timepicker", | ||
5 | "keywords": [ | ||
6 | "react", | ||
7 | "react-timepicker", | ||
8 | "react-component", | ||
9 | "timepicker", | ||
10 | "ui component", | ||
11 | "ui", | ||
12 | "component" | ||
13 | ], | ||
14 | "files": [ | ||
15 | "lib", | ||
16 | "assets/*.css" | ||
17 | ], | ||
18 | "main": "lib/index", | ||
19 | "homepage": "http://github.com/react-component/timepicker", | ||
20 | "author": "wuzhao.mail@gmail.com", | ||
21 | "repository": { | ||
22 | "type": "git", | ||
23 | "url": "git@github.com:react-component/timepicker.git" | ||
24 | }, | ||
25 | "bugs": { | ||
26 | "url": "http://github.com/react-component/timepicker/issues" | ||
27 | }, | ||
28 | "licenses": "MIT", | ||
29 | "config": { | ||
30 | "port": 8001 | ||
31 | }, | ||
32 | "scripts": { | ||
33 | "build": "rc-tools run build", | ||
34 | "gh-pages": "rc-tools run gh-pages", | ||
35 | "start": "rc-server", | ||
36 | "pub": "rc-tools run pub", | ||
37 | "lint": "rc-tools run lint", | ||
38 | "karma": "rc-tools run karma", | ||
39 | "saucelabs": "rc-tools run saucelabs", | ||
40 | "browser-test": "rc-tools run browser-test", | ||
41 | "browser-test-cover": "rc-tools run browser-test-cover", | ||
42 | "validate": "npm ls" | ||
43 | }, | ||
44 | "devDependencies": { | ||
45 | "async": "~0.9.0", | ||
46 | "bootstrap": "~3.3.2", | ||
47 | "expect.js": "~0.3.1", | ||
48 | "jquery": "~1.11.3", | ||
49 | "pre-commit": "1.x", | ||
50 | "rc-server": "3.x", | ||
51 | "rc-tools": "4.x", | ||
52 | "react": "0.14.x", | ||
53 | "react-addons-test-utils": "~0.14.0", | ||
54 | "react-dom": "0.14.x" | ||
55 | }, | ||
56 | "pre-commit": [ | ||
57 | "lint" | ||
58 | ], | ||
59 | "dependencies": { | ||
60 | "gregorian-calendar": "4.x", | ||
61 | "gregorian-calendar-format": "4.x", | ||
62 | "object-assign": "4.x", | ||
63 | "rc-trigger": "1.x", | ||
64 | "rc-util": "2.x" | ||
65 | } | ||
66 | } | ||