From 8de49ff2dce5d0248bedd0914ae9db70a505e9a9 Mon Sep 17 00:00:00 2001 From: Richard Gustin Date: Thu, 26 Jun 2014 05:49:07 +1000 Subject: [PATCH] release(1.0.6): Cleanup package.json and docs --- LICENSE | 20 ++++++++ README.md | 13 +++++- package.json | 130 +++++++++++++++++++++++++++------------------------ 3 files changed, 102 insertions(+), 61 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d7a5474 --- /dev/null +++ b/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 CleverStack + +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. diff --git a/README.md b/README.md index 01efd04..69f4877 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,17 @@ CleverStack Node Seed CleverStack Node Seed provides you with a cutting edge NodeJS development workflow. It's been designed to provide you with a super fast test driven back-end development lifecycle. Everything you need should be just one command away, if it's not please open an issue or fork and submit a pull request. +## Some Highlights +* NodeJS Async Non-Blocking Core. +* Modular Coding Structure based on NPM. +* Grunt powered tasks, including Server with Live Restart using nodemon. +* Databases supported: MySQL, PostgreSQL, SQLite or MongoDB. +* Official ORM (Object Relational Mapper) Module provides an enterprise SQL based solution out of the box. +* Official ODM (Object Document Mapper) Module provides an enterprise NoSQL based solution out of the box. +* Clustered application with high Concurrency out of the box. +* NodeJS Background Tasks Module which allows CPU intensive (blocking) operations to take place in separate processes, allowing your HTTP Web Server Processes to continue serving HTTP Requests. +* Unit & E2E (Integration) Testing with Mocha and Request. + ## Documentation See [cleverstack.io](http://cleverstack.io/documentation/#backend) for more detailed information on the Node seed or visit the [Getting Started Guide](http://cleverstack.io/getting-started/) @@ -26,4 +37,4 @@ Install is made easy using the CleverStack CLI, first install [node.js](http://n ## License -CleverStack is copyright of [Clevertech](http://clevertech.biz) and is licensed under the MIT License. +See our [LICENSE](https://github.com/CleverStack/node-seed/blob/master/LICENSE) \ No newline at end of file diff --git a/package.json b/package.json index c533f06..b083920 100644 --- a/package.json +++ b/package.json @@ -1,61 +1,71 @@ { - "main": "app.js", - "name": "node-seed", - "description": "Cleverstack Node-Seed", - "version": "1.0.5", - "author": { - "name": "CleverStack", - "email": "admin@cleverstack.io", - "web": "http://cleverstack.io" - }, - "collaborators": [ - "Richard Gustin ", - "Dmitry Bashkatov ", - "Leandro Ostera " - ], - "private": true, - "scripts": { - "start": "grunt", - "setup": "npm i; grunt db;", - "test": "grunt test --verbose" - }, - "dependencies": { - "async": "~0.2.9", - "bluebird": "^2.0.2", - "chalk": "^0.4.0", - "clever-controller": "~1.1.4", - "clever-injector": "~1.0.0", - "cors": "~2.1.1", - "debug": "~0.7.2", - "deepmerge": "~0.2.7", - "express": "~3.4.7", - "i": "~0.3.2", - "matchdep": "~0.3.0", - "nconf": "~0.6.9", - "q": "~1.0.0", - "should": "~3.1.2", - "uberclass": "~1.0.1", - "underscore": "~1.5.2", - "validator": "^3.16.0" - }, - "devDependencies": { - "chai": "", - "grunt-concurrent": "~0.3.0", - "grunt-contrib-clean": "", - "grunt-contrib-connect": "~0.3.0", - "grunt-contrib-jshint": "", - "grunt-contrib-watch": "", - "grunt-exec": "~0.4.2", - "grunt-mocha-test": "", - "grunt-nodemon": "", - "karma": "", - "matchdep": "", - "mocha": "", - "ncp": "^0.5.1", - "rimraf": "^2.2.8", - "should": "~2.1.1", - "sinon": "", - "supertest": "" - }, - "bundledDependencies": [] -} + "private": true, + "name": "node-seed", + "description": "Cleverstack Node-Seed", + "version": "1.0.6", + "main": "app.js", + "author": { + "name": "CleverStack", + "email": "admin@cleverstack.io", + "web": "http://cleverstack.io" + }, + "collaborators": [ + "Richard Gustin ", + "Daniel Young ", + "Leandro Ostera " + ], + "repository": { + "type": "git", + "url": "https://github.com/CleverStack/node-seed.git" + }, + "bugs": { + "url": "https://github.com/CleverStack/node-seed/issues" + }, + "keywords": [ + "cleverstack", + "framework", + "seed" + ], + "license": "BSD-2-Clause", + "dependencies": { + "async": "~0.9.0", + "bluebird": "~2.1.3", + "chalk": "~0.4.0", + "clever-controller": "~1.1.4", + "clever-injector": "~1.0.0", + "cors": "~2.3.1", + "debug": "~1.0.2", + "deepmerge": "~0.2.7", + "express": "~3.4.7", + "i": "~0.3.2", + "matchdep": "~0.3.0", + "nconf": "~0.6.9", + "uberclass": "~1.0.1", + "underscore": "~1.6.0" + }, + "devDependencies": { + "chai": "~1.9.1", + "grunt-concurrent": "~0.5.0", + "grunt-contrib-clean": "~0.5.0", + "grunt-contrib-connect": "~0.3.0", + "grunt-contrib-jshint": "~0.10.0", + "grunt-contrib-watch": "~0.6.1", + "grunt-exec": "~0.4.2", + "grunt-mocha-test": "~0.11.0", + "grunt-nodemon": "~0.2.1", + "karma": "~0.12.16", + "matchdep": "~0.3.0", + "mocha": "~1.20.1", + "ncp": "~0.5.1", + "rimraf": "~2.2.8", + "should": "~4.0.4", + "sinon": "~1.10.2", + "supertest": "~0.13.0" + }, + "scripts": { + "start": "grunt", + "setup": "npm i; grunt db;", + "test": "grunt test --verbose" + }, + "bundledDependencies": [] +} \ No newline at end of file