forked from hypeserver/react-date-range
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 879 Bytes
/
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
{
"name": "react-date-range",
"version": "0.9.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": "Burak Can <neoberg@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/Adphorus/react-date-range"
},
"bugs": {
"url": "http://github.com/Adphorus/react-date-range/issues"
},
"dependencies": {
"classnames": "^2.2.1",
"moment": "^2.10.6",
"react": "^0.14.8"
},
"devDependencies": {
"babel": "^5.8.23"
}
}