forked from Rudeg/react-input-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "react-input-calendar",
"version": "0.1.4",
"description": "Datepicker widget react component",
"repository": "https://github.com/Rudeg/react-input-calendar",
"main": "index.js",
"dependencies": {
"react": "^0.12.2",
"moment-range": "^1.0.5"
},
"devDependencies": {
"browserify": "^7.0.2",
"envify": "^3.0.0",
"gulp": "^3.8.10",
"gulp-react": "^2.0.0",
"jest-cli": "~0.1.18",
"reactify": "^0.17.1",
"uglify-js": "~2.4.15",
"watchify": "^2.1.1"
},
"scripts": {
"start": "watchify -o js/bundle.js -v -d .",
"build": "browserify reactify -cm > dist/input-calendar.js",
"test": "jest"
},
"browserify": {
"transform": [
"reactify",
"envify"
]
},
"jest": {
"rootDir": "./src"
},
"keywords": [
"react",
"datepicker",
"calendar",
"input-datepicker",
"input-calendar",
"react-input-calendar",
"react-calendar",
"react-datepicker",
"react-component"
],
"homepage": "https://github.com/Rudeg/react-input-calendar",
"author": "Rudeg <[email protected]> (https://github.com/Rudeg)",
"license": "MIT"
}