forked from hypeserver/react-date-range
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1014 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1014 Bytes
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
{
"name": "awesome-react-date",
"version": "0.3.0",
"description": "A React component for choosing dates and date ranges.",
"main": "lib/index.js",
"scripts": {
"start-dev": "babel ./src --watch --out-dir ./lib & cd demo && npm install && npm run start-dev",
"prebuild": "rm -rf lib/*",
"build": "babel ./src --out-dir ./lib",
"prepublish": "npm run build"
},
"keywords": [
"react",
"date",
"range",
"datepicker",
"rangepicker"
],
"author": "Phat Tran <trankyphat@gmail.com>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "http://github.com/phattranky/awesome-react-date"
},
"bugs": {
"url": "http://github.com/phattranky/awesome-react-date/issues"
},
"dependencies": {
"classnames": "^2.2.5",
"moment": "^2.15.0",
"react": "^15.3.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0"
}
}