forked from flowjs/ng-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
25 lines (21 loc) · 776 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
// package metadata file for Meteor.js
var packageName = 'digimet:ng-flow';
var where = 'client'; // where to install: 'client' or 'server'. For both, pass nothing.
var version = '2.7.7';
var summary = 'Flow.js html5 file upload extension on angular.js framework';
var gitLink = 'https://github.com/flowjs/ng-flow.git';
var documentationFile = 'README.md';
// Meta-data
Package.describe({
name: packageName,
version: version,
summary: summary,
git: gitLink,
documentation: documentationFile
});
Package.onUse(function(api) {
api.versionsFrom(['[email protected]', '[email protected]']); // Meteor versions
api.use('angular:[email protected]', where); // Dependencies
api.use('digimet:[email protected]', where);
api.addFiles('./dist/ng-flow.js', where); // Files in use
});