-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.js
More file actions
21 lines (18 loc) · 705 Bytes
/
package.js
File metadata and controls
21 lines (18 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Package.describe({
summary: "An analytics package for meteor",
version: "0.9.6",
git: "https://github.com/Tarang/Meteor-Analytics.git",
name: "tail:core"
});
Package.on_use(function (api) {
if(api.versionsFrom) api.versionsFrom("METEOR@1.1.0.2");
api.use(['templating', 'jquery'],'client');
api.use(['ddp'],'server');
api.use(['underscore', 'mongo', 'tracker', 'random', 'accounts-base'], ['server', 'client']);
api.add_files(['hooks_client.js'], 'client');
api.add_files('client/setup.html', 'server', {isAsset: true});
api.add_files('lib_server.js', 'server');
api.add_files('providers/defaults.js', 'server');
api.add_files('providers/atmosphere.js', 'server');
api.export('Tail');
});