From 5d77c65d0e81e0974c8d136a3135ecd3a8b645f2 Mon Sep 17 00:00:00 2001 From: Benjamin Pannell Date: Thu, 21 Nov 2013 13:31:40 +0200 Subject: [PATCH] Add LICENCE, credits to README --- LICENCE | 46 ++++++++++++++++++++++++++++++++++++++++++++++ README.md | 7 ++++++- package.json | 3 +++ 3 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 LICENCE diff --git a/LICENCE b/LICENCE new file mode 100644 index 0000000..60a4ddd --- /dev/null +++ b/LICENCE @@ -0,0 +1,46 @@ +(The MIT License) + +Copyright (c) 2013 Sierra Softworks (https://sierrasoftworks.com/) + +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. + +NodeLib Licence +(The MIT License) + +Copyright (c) 2013 Tadahiro Ishisaka (http://isisaka.com/) + +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. \ No newline at end of file diff --git a/README.md b/README.md index 3ba86c3..e131d7e 100644 --- a/README.md +++ b/README.md @@ -98,4 +98,9 @@ TODO TODO ## Instances -TODO \ No newline at end of file +TODO + +## Credits +Thanks to [Tadahiro Ishisaka](https://github.com/ishisaka) for his brilliant [nodeintellisense](https://github.com/ishisaka/nodeintellisense) library, it has been used as the basis for IntelliSense support within this module. + +I'd also like to thank [dresende](https://github.com/dresende) and [dxg](https://github.com/dxg) from the [node-orm2](https://github.com/dresende/node-orm2) project for getting me introduced to Node and giving me many of the ideas for how a good ORM should be structured. If you're looking for an easy to use and more fully featured ORM with support for SQL and NoSQL databases, I'd seriously suggest giving [node-orm2](https://github.com/dresende/node-orm2) a try. \ No newline at end of file diff --git a/package.json b/package.json index c3dd73f..c0469c0 100644 --- a/package.json +++ b/package.json @@ -8,10 +8,13 @@ "contributors": [ { "name": "Benjamin Pannell", "email": "admin@sierrasoftworks.com" } ], + "licence": "MIT", + "main": "./index", "scripts": { "test": "node tests/run" }, + "engines": { "node": ">= 0.8" },