Skip to content

Commit

Permalink
release(1.0.6): Cleanup package.json and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
pilsy committed Jun 25, 2014
1 parent 501d8e9 commit 8de49ff
Show file tree
Hide file tree
Showing 3 changed files with 102 additions and 61 deletions.
20 changes: 20 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -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.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
</blockquote>

## 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/)
Expand All @@ -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)
130 changes: 70 additions & 60 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,71 @@
{
"main": "app.js",
"name": "node-seed",
"description": "Cleverstack Node-Seed",
"version": "1.0.5",
"author": {
"name": "CleverStack",
"email": "[email protected]",
"web": "http://cleverstack.io"
},
"collaborators": [
"Richard Gustin <[email protected]>",
"Dmitry Bashkatov <[email protected]>",
"Leandro Ostera <[email protected]>"
],
"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": "[email protected]",
"web": "http://cleverstack.io"
},
"collaborators": [
"Richard Gustin <[email protected]>",
"Daniel Young <[email protected]>",
"Leandro Ostera <[email protected]>"
],
"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": []
}

0 comments on commit 8de49ff

Please sign in to comment.