forked from meteor/meteor-synced-cron
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.js
More file actions
20 lines (17 loc) · 658 Bytes
/
package.js
File metadata and controls
20 lines (17 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Package.describe({
summary: "Fork of original w/ timezone support. Define and run scheduled jobs across multiple servers.",
version: "1.2.7",
name: "trever:synced-cron",
git: "https://github.com/trever/meteor-synced-cron.git"
});
Npm.depends({later: "1.1.6", timezone:'0.0.41'});
Package.onUse(function (api) {
api.versionsFrom('METEOR@0.9.1.1');
api.use(['underscore', 'check', 'mongo', 'logging'], 'server');
api.add_files(['synced-cron-server.js'], "server");
api.export('SyncedCron', 'server');
});
Package.onTest(function (api) {
api.use(['trever:synced-cron', 'tinytest']);
api.add_files('synced-cron-tests.js', ['server']);
});