forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
170 lines (170 loc) · 6.55 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "reactstrap",
"version": "8.0.1",
"description": "React Bootstrap 4 components",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"jsdelivr": "dist/reactstrap.min.js",
"unpkg": "dist/reactstrap.min.js",
"cdn": "dist/reactstrap.min.js",
"esnext": "src/index.js",
"sideEffects": false,
"scripts": {
"report-coverage": "coveralls < ./coverage/lcov.info",
"test": "cross-env SKIP_PREFLIGHT_CHECK=true react-app-rewired test --env=jsdom",
"cover": "npm test -- --coverage",
"start": "webpack-dev-server --config ./webpack.docs.config.js --watch",
"build:docs": "cross-env WEBPACK_BUILD=production webpack --config ./webpack.docs.config.js --progress --colors",
"build": "npm run build:lib && npm run build:esm && npm run build:umd",
"build:umd": "rollup -c",
"build:lib": "babel src --out-dir lib --ignore src/__tests__/",
"build:esm": "cross-env BABEL_ENV=esm-dir babel src --out-dir es --ignore src/__tests__/",
"postbuild": "node ./scripts/postbuild.js",
"create-release": "npm run cover && sh ./scripts/release",
"publish-release": "npm run cover && sh ./scripts/publish",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/reactstrap/reactstrap.git"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib",
"dist",
"src",
"es"
],
"keywords": [
"reactstrap",
"bootstrap",
"react",
"component",
"components",
"react-component",
"ui"
],
"contributors": [
"Eddy Hernandez <edward.d.hernandez@gmail.com> (https://github.com/eddywashere)",
"Evan Sharp <evan@lostonia.com> (https://github.com/TheSharpieOne)",
"Chris Burrell <chrisburrell@gmail.com> (https://github.com/cbfx)",
"Li Jinyao (https://github.com/LiJinyao)",
"Matthew King (https://github.com/mking-clari)",
"Ajai <ajainarayanan@gmail.com> (https://github.com/ajainarayanan)",
"Paulus Schoutsen <paulus@paulusschoutsen.nl> (https://github.com/balloob)",
"Ronny Haase (https://github.com/ronnyhaase)",
"Ali Sheehan-Dare <alisd23@live.co.uk> (https://github.com/alisd23)",
"Amila Welihinda (https://github.com/amilajack)",
"David Edmondson (https://github.com/threehams)",
"Aaron Panchal (https://github.com/aaronpanch)",
"André Pena <andrerpena@gmail.com> (https://github.com/andrerpena)",
"Ben Herila (https://github.com/bherila)",
"Binoy <me@binoy.io> (https://github.com/binoy14)",
"Chad Wintzer (https://github.com/arbitrarytech)",
"Code Review Videos (https://github.com/codereviewvideos)",
"Cory Deppen (https://github.com/corydeppen)",
"Daniel Huisman <daniel@huisman.me> (https://github.com/DanielHuisman)",
"Gary Thomas (https://github.com/gthomas-appfolio)",
"Hosmel Quintana <hosmelq@gmail.com> (https://github.com/hosmelq)",
"Jamie Albinson <jcalbinson@gmail.com> (https://github.com/jalbinson)",
"Jason Sturges <jason@jasonsturges.com> (https://github.com/jasonsturges)",
"Jean-Elie Barjonet (https://github.com/jebarjonet)",
"Jeff Francisco (https://github.com/j-francisco)",
"Jesse Mandel (https://github.com/supergibbs)",
"Jim Liu <junminliu@gmail.com> (https://github.com/JimLiu)",
"Joe (https://github.com/joemcadams)",
"Joe Woynillowicz (https://github.com/CoderJoeIO)",
"Jon Jaques <jaquers@gmail.com> (https://github.com/jonjaques)",
"Luc Vauvillier (https://github.com/lvauvillier)",
"Melissa Siu <melissa.siu@gmail.com> (https://github.com/mesiu)",
"Natthakit Susanthitanon (https://github.com/nsmag)",
"Rich Hong <hong.rich@gmail.com> (https://github.com/hongrich)",
"Skoranga (https://github.com/skoranga)",
"Thijs Vogels (https://github.com/tvogels)",
"Tyler Johnson <tyler@tylerjohnson.me> (https://github.com/tyler-johnson)",
"alan blount <alan@zeroasterisk.com> (https://github.com/zeroasterisk)",
"edgji (https://github.com/edgji)",
"nlrowe (https://github.com/nlrowe)",
"npm-to-cdn-bot (by Forbes Lindesay) (https://github.com/npmcdn-to-unpkg-bot)",
"polmauri (https://github.com/polmauri)",
"Steven Scaffidi (https://github.com/sscaff1)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/reactstrap/reactstrap/issues"
},
"homepage": "https://github.com/reactstrap/reactstrap#readme",
"dependencies": {
"@babel/runtime": "^7.2.0",
"classnames": "^2.2.3",
"lodash.isfunction": "^3.0.9",
"lodash.isobject": "^3.0.2",
"lodash.tonumber": "^4.0.3",
"prop-types": "^15.5.8",
"react-lifecycles-compat": "^3.0.4",
"react-popper": "^1.3.3",
"react-transition-group": "^2.3.1"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.4",
"bootstrap": "^4.1.3",
"clean-webpack-plugin": "^1.0.0",
"conventional-changelog-cli": "^2.0.21",
"conventional-recommended-bump": "^0.3.0",
"copy-webpack-plugin": "^4.6.0",
"coveralls": "^2.11.12",
"cross-env": "^2.0.0",
"css-loader": "^2.1.0",
"customize-cra": "^0.2.8",
"ejs": "^2.5.9",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.0.0",
"eslint-config-react-app": "^3.0.6",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-react": "^7.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"history": "^3.0.0",
"holderjs": "^2.9.3",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.5.0",
"raw-loader": "^1.0.0",
"react": "^16.3.2",
"react-app-rewired": "^1.6.2",
"react-dom": "^16.3.2",
"react-helmet": "^5.0.3",
"react-prism": "^4.3.2",
"react-router": "^3.2.1",
"react-scripts": "2.1.1",
"react-test-renderer": "^16.3.2",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-babel-minify": "^6.2.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"static-site-generator-webpack-plugin": "^3.4.2",
"style-loader": "^0.23.1",
"webpack": "^4.28.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
}
}