-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
28 lines (25 loc) · 861 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
var packageName = 'fujihara:angular-smart-table';
var where = 'client'; // where to install: 'client' or 'server'. For both, pass nothing.
var version = '2.1.8';
var summary = 'Meteor wrapper to npm/bower Smart-Table.';
var gitLink = 'https://github.com/fujihara/angular-smart-table';
var documentationFile = 'README.md';
Package.describe({
name: packageName,
version: version,
summary: summary,
git: gitLink,
documentation: documentationFile
});
Package.onUse(function(api) {
api.versionsFrom('1.3');
api.use('ecmascript');
api.use('angular:[email protected]', 'client');
api.add_files(['bower_components/angular-smart-table/dist/smart-table.min.js'], 'client');
});
Package.onTest(function(api) {
api.use('ecmascript');
api.use('tinytest');
api.use('fujihara:angular-smart-table');
api.mainModule('angular-smart-table-tests.js');
});