-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.js
32 lines (29 loc) · 816 Bytes
/
package.js
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: 'jam:offline',
version: '0.3.2',
summary: 'An easy way to give your Meteor app offline capabilities and make it feel instant',
git: 'https://github.com/jamauro/offline',
documentation: 'README.md'
});
Npm.depends({
'idb': '8.0.0'
});
Package.onUse(function(api) {
api.versionsFrom(['2.8.1', '3.0']);
api.use('ecmascript');
api.use('mongo');
api.use('check');
api.use('mongo-id', 'client');
api.use('tracker', 'client');
api.use('zodern:[email protected]');
api.use('jam:[email protected]', { weak: true });
api.mainModule('client.js', 'client');
api.mainModule('server.js', 'server');
});
Package.onTest(function(api) {
api.use('ecmascript');
api.use('tinytest');
api.use('mongo-id', 'client');
api.use('jam:offline');
api.mainModule('tests.js');
});