forked from skratchdot/react-bootstrap-daterangepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.25 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
{
"name": "react-bootstrap-daterangepicker",
"version": "7.0.0",
"description": "A date/time picker for react (using bootstrap). This is a react port of: https://github.com/dangrossman/bootstrap-daterangepicker",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"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/ ./dist/",
"cover": "npm run test -- --coverage",
"coveralls": "cat coverage/lcov.info | coveralls --verbose || exit 0",
"format": "prettier --write --single-quote '**/*.{js,md}'",
"lint": "eslint .",
"start": "npm run watch",
"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": "*",
"react": "*"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-external-helpers": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-knobs": "^6.3.0",
"@storybook/addon-storysource": "^6.3.4",
"@storybook/addons": "^6.3.4",
"@storybook/react": "^6.3.4",
"@storybook/theming": "^6.3.4",
"@types/daterangepicker": "^3.1.4",
"@types/jquery": "^3.5.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"bootstrap": "^4.5.0",
"bootstrap-daterangepicker": "^3.1.0",
"cheerio": "^0.22.0",
"coveralls": "^3.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.30.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"jquery": "^3.6.0",
"lolex": "^6.0.0",
"moment": "^2.29.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "^0.13.5",
"rimraf": "^3.0.2",
"rollup": "^2.53.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.5",
"wordwrap": "^1.0.0"
},
"keywords": [
"react",
"react-component",
"bootstrap",
"date",
"range",
"picker",
"selector",
"datetime",
"ui"
]
}