Skip to content

Commit

Permalink
release(package.json): add license, bump version & dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eddywashere committed Mar 13, 2016
1 parent 9d255e1 commit 2f2f9a8
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 15 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2016 Eddy Hernandez, Chris Burrell

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
29 changes: 20 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 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)

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

#### Project Goals

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

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

Currently this library contains basic support for the following components:

- Buttons
- Button Dropdowns
- Button Groups
- Button Tools
- Dropdowns
- Tooltips
This library contains the following components:

- Button,
- ButtonDropdown,
- ButtonGroup,
- ButtonToolbar,
- Dropdown,
- DropdownItem,
- DropdownMenu,
- DropdownToggle,
- Label,
- Popover,
- PopoverContent,
- PopoverTitle,
- Modal,
- ModalHeader,
- ModalBody,
- ModalFooter,
- Tooltip

## Development

Expand Down
21 changes: 15 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "reactstrap",
"version": "0.4.0",
"description": "React Bootstrap 4 components",
"version": "0.5.0",
"description": "React Bootstrap 4 components compatible with React 0.14.x & 15",
"main": "lib/index.js",
"scripts": {
"coverage": "coveralls < ./test/coverage/lcov/lcov.info",
Expand All @@ -13,6 +13,11 @@
"type": "git",
"url": "git+ssh://git@github.com/reactstrap/reactstrap.git"
},
"files": [
"LICENSE",
"README.md",
"lib"
],
"keywords": [
"bootstrap",
"react",
Expand All @@ -33,10 +38,12 @@
"classnames": "^2.2.3",
"lodash.isfunction": "^3.0.8",
"lodash.omit": "^4.1.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"tether": "^1.2.0"
},
"peerDependencies": {
"react": ">=0.14.0 || >=15.0.0-rc.1",
"react-dom": ">=0.14.0 || >=15.0.0-rc.1"
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.2",
Expand All @@ -46,7 +53,7 @@
"babel-preset-stage-0": "^6.5.0",
"cheerio": "^0.20.0",
"coveralls": "^2.11.8",
"enzyme": "^2.0.0",
"enzyme": "^2.1.0",
"eslint": "^2.0.0",
"eslint-plugin-react": "^3.16.1",
"eslint-plugin-standard": "^1.3.2",
Expand All @@ -64,7 +71,9 @@
"karma-webpack": "^1.7.0",
"phantomjs-polyfill": "0.0.1",
"phantomjs-prebuilt": "^2.1.4",
"react-addons-test-utils": "^0.14.7",
"react": ">=15.0.0-rc.1",
"react-addons-test-utils": ">=15.0.0-rc.1",
"react-dom": "^15.0.0-rc.1",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
Expand Down

0 comments on commit 2f2f9a8

Please sign in to comment.