-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.js
43 lines (39 loc) · 1.37 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
Package.describe({
name: 'parlay:full-pack',
version: '1.0.3_2',
summary: 'The best packages, bundled together! 🎁',
git: 'https://github.com/parlaywithme/full-pack.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.0.3.2');
api.imply('parlay:[email protected]_2');
api.imply('[email protected]');
api.imply('[email protected]');
api.imply('[email protected]');
api.imply('[email protected]');
api.imply('[email protected]');
api.imply('[email protected]');
api.imply('[email protected]');
api.imply('meteorhacks:[email protected]');
api.imply('mquandalle:[email protected]_2');
api.imply('stevezhu:[email protected]');
api.imply('msavin:[email protected]');
api.imply('meteorhacks:[email protected]');
api.imply('raix:[email protected]');
api.imply('zimme:[email protected]');
api.imply('dburles:[email protected]');
api.imply('mizzao:[email protected]');
api.imply('u2622:[email protected]');
api.imply('zimme:[email protected]');
api.imply('meteorhacks:[email protected]');
api.imply('meteorhacks:[email protected]');
api.imply('peerlibrary:[email protected]');
api.imply('meteorhacks:[email protected]');
// api.addFiles('parlay:full-pack.js');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('parlay:full-pack');
api.addFiles('parlay:full-pack-tests.js');
});