-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
34 lines (32 loc) · 1.11 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
Package.describe({
name: 'janmp:sdui',
version: '1.0.0',
// Brief, one-line summary of the package.
summary: 'Some high level React components and setup for backend.',
// URL to the Git repository containing the source code for this package.
git: 'http://github.com/JanMP/sdui',
// 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('2.10.0');
api.use('ecmascript');
api.use('[email protected]');
api.use('typescript');
api.use('zodern:[email protected]');
api.use('reactive-var');
api.use('alanning:[email protected]');
api.use('mdg:[email protected]');
api.use('peerlibrary:[email protected]');
api.use('tunguska:[email protected]');
// api.use('mizzao:[email protected]');
api.mainModule('sdui-client-dynamic.coffee', 'client');
api.mainModule('sdui-server.coffee', 'server');
});
Package.onTest(function(api) {
api.use('ecmascript');
api.use('tinytest');
api.use('janmp:sdui');
api.mainModule('sdui-tests.js');
});