Skip to content

Commit 8bfdc6c

Browse files
committed
Add License
1 parent dcf96e9 commit 8bfdc6c

File tree

3 files changed

+38
-6
lines changed

3 files changed

+38
-6
lines changed

LICENSE.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016-present, Francois Zaninotto, Marmelab
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 NON INFRINGEMENT. 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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# admin-on-rest
22

3-
An frontend Framework for building admin applications on top of REST services, using ES6, React and Material UI.
3+
A frontend Framework for building admin applications on top of REST services, using ES6, React and Material UI.
44

55
## Example
66

package.json

+16-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
{
2-
"name": "redux-crud",
3-
"version": "0.0.5",
4-
"description": "Actions and reducers for interacting with REST services",
2+
"name": "admin-on-rest",
3+
"version": "0.0.1",
4+
"description": "A frontend Framework for building admin applications on top of REST services, using ES6, React and Material UI",
5+
"files": [
6+
"*.md",
7+
"docs",
8+
"es6",
9+
"lib",
10+
],
511
"main": "lib/index",
612
"jsnext:main": "es6/index",
713
"scripts": {
814
"test": "make test"
915
},
1016
"author": "François Zaninotto",
17+
"repository": "marmelab/admin-on-rest",
18+
"homepage": "https://github.com/marmelab/admin-on-rest#readme",
19+
"bugs": "https://github.com/marmelab/admin-on-rest/issues",
1120
"license": "MIT",
1221
"devDependencies": {
1322
"babel-cli": "^6.10.1",
@@ -27,10 +36,13 @@
2736
"eslint-plugin-import": "^1.10.1",
2837
"eslint-plugin-jsx-a11y": "^1.5.3",
2938
"eslint-plugin-react": "^5.2.2",
39+
"mocha": "^2.5.3",
40+
"webpack-dev-server": "^1.14.1"
41+
},
42+
"dependencies": {
3043
"farfetched": "^1.2.0",
3144
"inflection": "^1.10.0",
3245
"material-ui": "^0.15.2",
33-
"mocha": "^2.5.3",
3446
"react": "^15.2.1",
3547
"react-dom": "^15.2.0",
3648
"react-redux": "^4.4.5",
@@ -39,6 +51,5 @@
3951
"react-tap-event-plugin": "^1.0.0",
4052
"redux": "^3.5.2",
4153
"redux-saga": "^0.11.0",
42-
"webpack-dev-server": "^1.14.1"
4354
}
4455
}

0 commit comments

Comments
 (0)