Skip to content

Commit

Permalink
Create package.js
Browse files Browse the repository at this point in the history
  • Loading branch information
warcode committed Sep 1, 2015
1 parent dbcadbf commit 98748e9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions packages/rocketchat-sharedsecret/package.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Package.describe({
name: 'rocketchat:sharedsecret',
version: '0.0.1',
summary: 'RocketChat libraries',
git: ''
});

Package.onUse(function(api) {
api.versionsFrom('1.0');

api.use([
'coffeescript',
'rocketchat:[email protected]'
]);

api.use(['jparker:crypto-aes'], ['server','client']);

api.addFiles('sharedsecret.coffee', ['server','client']);
});

Package.onTest(function(api) {});

0 comments on commit 98748e9

Please sign in to comment.