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-timesync/package.js

38 lines
666 B

Package.describe({
name: 'mizzao:timesync',
summary: 'NTP-style time synchronization between server and client',
version: '0.3.4',
git: 'https://github.com/mizzao/meteor-timesync.git'
});
Package.onUse(function (api) {
api.use([
'check',
'tracker',
'http',
], 'client');
api.use([
'webapp',
], 'server');
api.use([
'ecmascript',
]);
api.mainModule('client/index.js', 'client');
api.mainModule('server/index.js', 'server');
});
Package.onTest(function (api) {
api.use([
'ecmascript',
'tinytest',
'test-helpers'
]);
api.use(['tracker'], 'client');
api.use('mizzao:timesync');
api.addFiles('tests/client.js', 'client');
});