forked from matteodem/meteor-server-session
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
executable file
·32 lines (26 loc) · 785 Bytes
/
package.js
File metadata and controls
executable file
·32 lines (26 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Package.describe({
name: 'matteodem:server-session',
summary : "Serverside Session through a Meteor.Collection (get, set, equals etc.)",
version: "0.5.2",
git: "https://github.com/matteodem/meteor-server-session.git"
});
Package.on_use(function (api) {
api.versionsFrom('METEOR@0.9.0');
api.use('underscore', 'client');
api.use('underscore', 'server');
api.use(['livedata', 'mongo-livedata'], ['client', 'server']);
api.export('ServerSession');
api.add_files([
'lib/server-session.js'
], ['client', 'server']
);
});
Package.on_test(function (api) {
api.use(
['matteodem:server-session', 'tinytest', 'test-helpers']
);
api.add_files(
'tests/test-both.js',
['client', 'server']
);
});