The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/packages/meteor-streams/package.js

11 lines
360 B

Package.describe({
name: 'arunoda:streams',
version: '0.1.17',
summary: "DB less realtime communication for meteor"
});
Package.on_use(function (api, where) {
api.use('underscore', ['client', 'server']);
api.add_files(['lib/ev.js', 'lib/server.js', 'lib/stream_permission.js'], 'server');
api.add_files(['lib/ev.js', 'lib/client.js'], 'client');
});