forked from compact/angular-bootstrap-lightbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
25 lines (23 loc) · 742 Bytes
/
package.js
File metadata and controls
25 lines (23 loc) · 742 Bytes
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 options = {
"version": "0.10.0",
"name": "codelovers:angular-bootstrap-lightbox",
"where": "client",
"documentation": "README.md"
};
Package.describe({
name: options.name,
version: options.version,
git: 'https://github.com/compact/angular-bootstrap-lightbox.git',
summary: 'An AngularJS lightbox built using UI Bootstrap Modal.',
documentation: options.documentation
});
Package.onUse(function(api) {
api.versionsFrom('METEOR@1.2');
api.use('angular:angular@1.4.7', options.where);
api.use('angularui:angular-ui-bootstrap@0.13.0', options.where);
api.addFiles([
'dist/angular-bootstrap-lightbox.js',
'dist/angular-bootstrap-lightbox.css'
], options.where);
});