forked from hanse/react-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 684 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 684 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
{
"name": "react-calendar-component",
"version": "1.0.0",
"description": "React.js calendar component.",
"repository": {
"type": "git",
"url": "git@github.com:Hanse/react-calendar"
},
"main": "./lib/index.js",
"jsnext:main": "./src/index.js",
"scripts": {
"clean": "rm -rf lib dist",
"build": "babel src --out-dir lib"
},
"author": "Hanse",
"license": "MIT",
"keywords": [
"react",
"react.js",
"calendar",
"react component",
"react calendar component",
"clndr"
],
"devDependencies": {
"babel": "^5.8.23"
},
"peerDependencies": {
"lodash": "^3.10.1",
"moment": "^2.10.6",
"react": "^0.14.2"
}
}