forked from bharath-cchmc/bharath90-meteorgeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
28 lines (26 loc) · 934 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
Package.describe({
name: 'bharath90:meteorgeo',
version: '0.0.2',
// Brief, one-line summary of the package.
summary: 'SRA database query client-side API',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/bharath-cchmc/bharath90-meteorgeo',
// 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.3.1');
api.use('ecmascript@0.4.1');
api.use("templating@1.1.7",'client');
api.use('http@1.1.3','client');
//api.use(["jquery@1.11.7"], 'client');
api.mainModule('meteorgeo.js');
api.export('sra','client');
});
Package.onTest(function(api) {
api.use('ecmascript');
api.use('tinytest');
api.use('bharath90:meteorgeo@0.0.1');
api.mainModule('meteorgeo-tests.js',['client','server']);
});