-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.js
28 lines (24 loc) · 884 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
Package.describe({
name: 'tuxbear:collection-class',
version: '3.0.1',
// Brief, one-line summary of the package.
summary: 'Meteor Collection Class returns ES6 class instances from Meteor Collections. ',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/tuxbear/meteor-collection-class',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.4');
api.use('ecmascript');
api.use('underscore');
api.mainModule('collection-class.js');
});
Package.onTest(function(api) {
api.use('ecmascript');
api.use('practicalmeteor:mocha');
api.use('underscore');
api.use('tuxbear:collection-class');
api.mainModule('collection-class-tests.js');
});