-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
22 lines (20 loc) · 729 Bytes
/
package.js
File metadata and controls
22 lines (20 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Package.describe({
name: 'ssing128:binary-search',
version: '0.0.7',
// Brief, one-line summary of the package.
summary: 'You dont have to write your own binary search anymore',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/ssing128/meteor-package',
// 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.0.5');
api.addFiles('lib/binary-search.js');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('ssing128:binary-search');
api.addFiles('binary-search-tests.js');
});