-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.js
More file actions
39 lines (34 loc) · 809 Bytes
/
package.js
File metadata and controls
39 lines (34 loc) · 809 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
33
34
35
36
37
38
39
Package.describe({
name: 'blockrazor:subscache-c4',
summary: 'Most useful subscription caching, ever.',
version: '2.0.1',
git: 'https://github.com/blockrazor/subscache-C4'
});
Package.onUse(function(api) {
api.versionsFrom('METEOR@1');
api.use([
'ecmascript@0.8.3',
'underscore',
'ejson',
'tracker',
'reactive-var'
], ['client', 'server']);
api.addFiles([
'src/SubsCache.js',
], ['client','server']);
api.export("SubsCache", ['client','server']);
});
Package.onTest(function(api) {
api.use([
'underscore',
'ecmascript',
'ejson',
'tracker',
'reactive-var',
'blockrazor:subscache-c4',
'practicalmeteor:chai',
'coffeescript',
'practicalmeteor:mocha'
], ['client', 'server']);
api.mainModule('src/SubsCache.tests.js');
});