Skip to content

Commit 2f2f9a8

Browse files
committed
release(package.json): add license, bump version & dependencies
1 parent 9d255e1 commit 2f2f9a8

File tree

3 files changed

+56
-15
lines changed

3 files changed

+56
-15
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Eddy Hernandez, Chris Burrell
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# reactstrap [![Build Status](https://travis-ci.org/reactstrap/reactstrap.svg?branch=master)](https://travis-ci.org/reactstrap/reactstrap) [![Coverage Status](https://coveralls.io/repos/github/reactstrap/reactstrap/badge.svg?branch=master)](https://coveralls.io/github/reactstrap/reactstrap?branch=master)
22

3-
A work in progress react component library for Bootstrap 4. Don't use this just yet.
3+
React Bootstrap 4 components compatible with React 0.14.x & 15.
44

55
#### Project Goals
66

@@ -26,14 +26,25 @@ import { Button } from 'lib/index';
2626

2727
Until a documentation site exists, checkout this [jsbin live demo](http://jsbin.com/dimive/latest/edit?js,output) or the example sections for usage: https://github.com/reactstrap/reactstrap/tree/master/example/js
2828

29-
Currently this library contains basic support for the following components:
30-
31-
- Buttons
32-
- Button Dropdowns
33-
- Button Groups
34-
- Button Tools
35-
- Dropdowns
36-
- Tooltips
29+
This library contains the following components:
30+
31+
- Button,
32+
- ButtonDropdown,
33+
- ButtonGroup,
34+
- ButtonToolbar,
35+
- Dropdown,
36+
- DropdownItem,
37+
- DropdownMenu,
38+
- DropdownToggle,
39+
- Label,
40+
- Popover,
41+
- PopoverContent,
42+
- PopoverTitle,
43+
- Modal,
44+
- ModalHeader,
45+
- ModalBody,
46+
- ModalFooter,
47+
- Tooltip
3748

3849
## Development
3950

package.json

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "reactstrap",
3-
"version": "0.4.0",
4-
"description": "React Bootstrap 4 components",
3+
"version": "0.5.0",
4+
"description": "React Bootstrap 4 components compatible with React 0.14.x & 15",
55
"main": "lib/index.js",
66
"scripts": {
77
"coverage": "coveralls < ./test/coverage/lcov/lcov.info",
@@ -13,6 +13,11 @@
1313
"type": "git",
1414
"url": "git+ssh://[email protected]/reactstrap/reactstrap.git"
1515
},
16+
"files": [
17+
"LICENSE",
18+
"README.md",
19+
"lib"
20+
],
1621
"keywords": [
1722
"bootstrap",
1823
"react",
@@ -33,10 +38,12 @@
3338
"classnames": "^2.2.3",
3439
"lodash.isfunction": "^3.0.8",
3540
"lodash.omit": "^4.1.0",
36-
"react": "^0.14.7",
37-
"react-dom": "^0.14.7",
3841
"tether": "^1.2.0"
3942
},
43+
"peerDependencies": {
44+
"react": ">=0.14.0 || >=15.0.0-rc.1",
45+
"react-dom": ">=0.14.0 || >=15.0.0-rc.1"
46+
},
4047
"devDependencies": {
4148
"babel-core": "^6.5.2",
4249
"babel-loader": "^6.2.2",
@@ -46,7 +53,7 @@
4653
"babel-preset-stage-0": "^6.5.0",
4754
"cheerio": "^0.20.0",
4855
"coveralls": "^2.11.8",
49-
"enzyme": "^2.0.0",
56+
"enzyme": "^2.1.0",
5057
"eslint": "^2.0.0",
5158
"eslint-plugin-react": "^3.16.1",
5259
"eslint-plugin-standard": "^1.3.2",
@@ -64,7 +71,9 @@
6471
"karma-webpack": "^1.7.0",
6572
"phantomjs-polyfill": "0.0.1",
6673
"phantomjs-prebuilt": "^2.1.4",
67-
"react-addons-test-utils": "^0.14.7",
74+
"react": ">=15.0.0-rc.1",
75+
"react-addons-test-utils": ">=15.0.0-rc.1",
76+
"react-dom": "^15.0.0-rc.1",
6877
"webpack": "^1.12.13",
6978
"webpack-dev-server": "^1.14.1"
7079
}

0 commit comments

Comments
 (0)