Skip to content

Commit

Permalink
Reduce dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
antlai committed Dec 4, 2015
1 parent 266dca8 commit 69a5302
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
12 changes: 7 additions & 5 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ limitations under the License.
exports.caf_cli = require('caf_cli');
var caf_ca = exports.caf_ca = require('caf_ca');
exports.caf_session = require('caf_session');
exports.caf_redis = require('caf_redis');
exports.caf_sharing = require('caf_sharing');
exports.caf_security = require('caf_security');

var caf_platform = exports.caf_platform = require('caf_platform');
var caf_comp = exports.caf_components = require('caf_components');
exports.caf_transport = require('caf_transport');
exports.caf_security = caf_platform.caf_security;
var caf_comp = exports.caf_components = caf_platform.caf_components;
exports.caf_transport = caf_platform.caf_transport;
exports.caf_redis = caf_platform.caf_redis;
exports.caf_sharing = caf_platform.caf_sharing;

exports.async = caf_platform.async;
var path = require('path');

Expand Down
7 changes: 1 addition & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
{
"name": "caf_core",
"description": "Cloud Assistant Framework Core",
"version": "0.2.1",
"version": "0.2.2",
"author": "Antonio Lain <antlai@cafjs.com>",
"dependencies": {
"caf_components": "^0.2.0",
"caf_transport": "^0.2.0",
"caf_platform": "^0.2.0",
"caf_session" : "^0.2.0",
"caf_ca": "^0.2.0",
"caf_redis": "^0.2.0",
"caf_sharing": "^0.2.0",
"caf_security": "^0.2.0",
"caf_cli": "^0.2.0"
},
"main": "index",
Expand Down

0 comments on commit 69a5302

Please sign in to comment.