forked from hypeserver/react-date-range
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 967 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
37
38
39
{
"name": "react-date-range",
"version": "0.9.4",
"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 <[email protected]>",
"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.19.4",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^0.14 || ^15.0.0-rc || ^15.0 || ^16.0"
},
"devDependencies": {
"babel": "^5.8.23"
}
}