diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 00000000000..5ccf9458700 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016-present, Francois Zaninotto, Marmelab + +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 NON INFRINGEMENT. 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. diff --git a/README.md b/README.md index 3549548db19..f70daeab090 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # admin-on-rest -An frontend Framework for building admin applications on top of REST services, using ES6, React and Material UI. +A frontend Framework for building admin applications on top of REST services, using ES6, React and Material UI. ## Example diff --git a/package.json b/package.json index 5f4ebed0928..076bc107843 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,22 @@ { - "name": "redux-crud", - "version": "0.0.5", - "description": "Actions and reducers for interacting with REST services", + "name": "admin-on-rest", + "version": "0.0.1", + "description": "A frontend Framework for building admin applications on top of REST services, using ES6, React and Material UI", + "files": [ + "*.md", + "docs", + "es6", + "lib", + ], "main": "lib/index", "jsnext:main": "es6/index", "scripts": { "test": "make test" }, "author": "François Zaninotto", + "repository": "marmelab/admin-on-rest", + "homepage": "https://github.com/marmelab/admin-on-rest#readme", + "bugs": "https://github.com/marmelab/admin-on-rest/issues", "license": "MIT", "devDependencies": { "babel-cli": "^6.10.1", @@ -27,10 +36,13 @@ "eslint-plugin-import": "^1.10.1", "eslint-plugin-jsx-a11y": "^1.5.3", "eslint-plugin-react": "^5.2.2", + "mocha": "^2.5.3", + "webpack-dev-server": "^1.14.1" + }, + "dependencies": { "farfetched": "^1.2.0", "inflection": "^1.10.0", "material-ui": "^0.15.2", - "mocha": "^2.5.3", "react": "^15.2.1", "react-dom": "^15.2.0", "react-redux": "^4.4.5", @@ -39,6 +51,5 @@ "react-tap-event-plugin": "^1.0.0", "redux": "^3.5.2", "redux-saga": "^0.11.0", - "webpack-dev-server": "^1.14.1" } }