-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 KB
/
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
{
"name": "react-simple-month-picker",
"description": "This is a very light component that makes it possible to select a year and a month and automatically sets the day to the first day of the month then it returns the correspondent Javascript Date Object;",
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"version": "0.2.3",
"author": "Akram MECHERI <[email protected]> (http://mecheri.altervista.com/)",
"repository": {
"type": "git",
"url": "https://github.com/meshredded/react-simple-month-picker"
},
"keywords": [
"month picker",
"date picker",
"react date picker",
"react month picker"
],
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"build": "babel src --presets babel-preset-es2015 --out-dir build"
},
"main": "./build/index.js",
"private": false,
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-core": "^6.7.6",
"babel-preset-react": "^6.5.0"
}
}