forked from onefinestay/react-daterange-picker
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
117 lines (117 loc) · 3 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "react-daterange-picker",
"version": "1.2.0",
"description": "A React based date range picker",
"author": "Jonathan Kim <jonathan.kim@onefinestay.com>",
"scripts": {
"develop": "gulp develop",
"build-dist-js": "gulp build-dist-js",
"test": "gulp test-coverage",
"lint": "gulp lint",
"deploy-example": "gulp deploy-example",
"prepublish": "gulp build-dist"
},
"style": "./dist/css/react-calendar.css",
"files": [
"dist",
"src",
"example"
],
"engines": {
"node": ">=4.0"
},
"contributors": [
{
"name": "Andrew Ingram",
"email": "andrew.ingram@onefinestay.com"
},
{
"name": "Alan Foster",
"email": "alan@alanfoster.me"
},
{
"name": "Thaer Abbas",
"email": "thaer.abbas@tajawal.com"
},
{
"name": "Roman Loginov",
"email": "maullerz@gmail.com"
}
],
"license": "Apache-2.0",
"main": "dist/DateRangePicker.js",
"keywords": [
"react",
"datepicker",
"calendar",
"date",
"range",
"react-component"
],
"repository": {
"type": "git",
"url": "https://github.com/onefinestay/react-daterange-picker"
},
"peerDependencies": {
"react": "^0.14.0 || 15.x.x",
"react-dom": "^0.14.0 || 15.x.x"
},
"dependencies": {
"calendar": "^0.1.0",
"classnames": "^2.1.1",
"create-react-class": "^15.6.0",
"immutable": "^3.7.2",
"moment": "^2.14.1",
"moment-range": "^2.0.3",
"prop-types": "^15.5.10",
"react-addons-pure-render-mixin": "^0.14.0 || 15.x.x"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-istanbul": "^2.0.1",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.14.0",
"brfs": "^1.2.0",
"del": "~2.0.2",
"eslint": "^3.5.0",
"eslint-plugin-react": "^6.2.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^2.1.0",
"gulp-babel": "^6.1.2",
"gulp-connect": "^2.2.0",
"gulp-eslint": "^3.0.1",
"gulp-ext-replace": "^0.1.0",
"gulp-gh-pages": "^0.4.0",
"gulp-load-plugins": "~1.0.0",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^1.2.4",
"gulp-util": "^3.0.7",
"gulp-watch": "^1.1.0",
"gulp-webpack": "^1.5.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-coverage": "^0.5.0",
"karma-jasmine": "^0.3.6",
"karma-mocha-reporter": "^1.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.5",
"karma-threshold-reporter": "^0.1.15",
"karma-webpack": "^1.7.0",
"object.assign": "^4.0.4",
"phantomjs": "^1.9.18",
"react": "^0.14.0 || 15.x.x",
"react-addons-test-utils": "^0.14.0 || 15.x.x",
"react-dom": "^0.14.0 || 15.x.x",
"run-sequence": "~1.1.4",
"timekeeper": "0.0.5",
"transform-loader": "^0.2.1",
"underscore": "^1.8.3",
"webpack": "^1.11.0"
}
}