forked from onefinestay/react-daterange-picker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.54 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
{
"name": "nuvi-daterange-picker",
"version": "1.2.7",
"description": "A React based date range picker forked",
"author": "Nuvi <[email protected]> (http://www.nuvi.com)",
"license": "ISC",
"scripts": {
"prepare": "npm run build",
"test": "npm run lint && npm run karma",
"lint": "eslint src",
"karma": "karma start karma.conf.js --browsers Firefox --single-run",
"prepublish": "npm run clean && npm run build",
"clean": "rimraf lib",
"build": "npm run build:lib",
"build:lib": "babel src/ -d lib"
},
"style": "./lib/css/react-calendar.css",
"files": [
"lib",
"src",
"example"
],
"engines": {
"node": ">=4.0"
},
"main": "lib/DateRangePicker.js",
"keywords": [
"react",
"datepicker",
"calendar",
"date",
"range",
"react-component"
],
"repository": {
"type": "git",
"url": "https://github.com/nuvi/nuvi-daterange-picker"
},
"peerDependencies": {
"react": "^15.3.2||^16",
"react-dom": "^15.3.2||^16"
},
"dependencies": {
"classnames": "^2.2.3",
"immutable": "^3.8.0",
"moment": "^2.24.0",
"moment-range": "^4.0.2",
"prop-types": "^15.5.10",
"react-addons-shallow-compare": "^15.6.2"
},
"devDependencies": {
"babel-cli": "~6.18.0",
"babel-core": "~6.18.2",
"babel-eslint": "~7.1.0",
"babel-loader": "~6.2.5",
"babel-plugin-transform-class-properties": "~6.18.0",
"babel-plugin-transform-object-assign": "~6.8.0",
"babel-plugin-transform-runtime": "~6.15.0",
"babel-polyfill": "~6.16.0",
"babel-preset-es2015": "~6.18.0",
"babel-preset-react": "~6.16.0",
"babel-preset-stage-0": "~6.16.0",
"brfs": "^1.4.3",
"css-loader": "~0.25.0",
"eslint": "~3.9.1",
"eslint-config-airbnb": "~13.0.0",
"eslint-plugin-jsx-a11y": "^3.0.1",
"eslint-plugin-react": "^6.6.0",
"expect": "^1.16.0",
"fetch-mock": "^5.5.0",
"file-loader": "~0.9.0",
"imports-loader": "^0.6.5",
"istanbul": "^0.4.3",
"istanbul-instrumenter-loader": "~1.0.0",
"jasmine-core": "^2.4.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "~1.0.0",
"karma-jasmine": "^1.0.2",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~1.8.0",
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^15.2.1",
"rimraf": "^2.5.2",
"timekeeper": "1.0.0",
"transform-loader": "^0.2.3",
"url-loader": "~0.5.7",
"underscore": "^1.8.3",
"webpack": "^1.13.0"
}
}