-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.js
More file actions
21 lines (19 loc) · 800 Bytes
/
package.js
File metadata and controls
21 lines (19 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Package.describe({
name: 'imajus:autoform-bootstrap4',
version: '0.0.5',
// Brief, one-line summary of the package.
summary: 'Bootstrap 4 templates for Meteor AutoForm',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/imajus/autoform-bootstrap4',
// 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.7.0.3');
api.use('ecmascript@0.12.1');
api.use(['underscore@1.0.10', 'templating@1.3.2', 'aldeed:autoform@6.0.0', 'aldeed:template-extension@4.0.0'], 'client');
api.mainModule('autoform-bootstrap4.js', 'client');
});
// Package.onTest(function(api) {
// });