forked from skratchdot/react-bootstrap-daterangepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.87 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
{
"name": "react-bootstrap-daterangepicker",
"version": "4.1.0",
"description": "A date/time picker for react (using bootstrap). This is a react port of: https://github.com/dangrossman/bootstrap-daterangepicker",
"main": "./dist/bundle.js",
"files": [
"dist/"
],
"scripts": {
"build": "npm-run-all clean build:options format lint cover build:lib build:storybook",
"build:lib": "rollup -c",
"build:options": "./scripts/build-options.js",
"build:storybook": "build-storybook -c .storybook -o ./docs",
"changelog": "github_changelog_generator -u skratchdot -p react-bootstrap-daterangepicker",
"clean": "rimraf ./coverage/ ./docs/",
"cover": "npm run test -- --coverage",
"coveralls": "cat coverage/lcov.info | coveralls --verbose",
"format": "prettier --write --single-quote '**/*.{js,md}'",
"lint": "eslint .",
"storybook": "start-storybook -p 9001 -c .storybook",
"test": "TZ=America/New_York jest",
"watch": "npm-run-all --parallel watch:cover storybook",
"watch:cover": "npm run cover -- --watch"
},
"author": "skratchdot",
"homepage": "https://github.com/skratchdot/react-bootstrap-daterangepicker/",
"repository": {
"type": "git",
"url": "git://github.com/skratchdot/react-bootstrap-daterangepicker.git"
},
"bugs": {
"url": "https://github.com/skratchdot/react-bootstrap-daterangepicker/issues"
},
"license": "Apache-2.0",
"peerDependencies": {
"bootstrap-daterangepicker": "*",
"jquery": "*",
"moment": "*",
"prop-types": "*",
"react": "*"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.1",
"@storybook/addon-info": "^3.4.1",
"@storybook/addon-knobs": "^3.4.1",
"@storybook/addon-options": "^3.4.1",
"@storybook/react": "^3.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"bootstrap": "^3",
"bootstrap-daterangepicker": "^2.1.30",
"cheerio": "^0.22.0",
"coveralls": "^3.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"jquery": "^3.3.1",
"lolex": "^2.3.2",
"moment": "^2.22.0",
"npm-run-all": "^4.1.2",
"prettier": "^1.11.1",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-node-resolve": "^3.3.0",
"wordwrap": "^1.0.0"
},
"keywords": [
"react",
"react-component",
"bootstrap",
"date",
"range",
"picker",
"selector",
"datetime",
"ui"
]
}