-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
24 lines (22 loc) · 868 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
Package.describe({
name: 'meteoric124:template-assert-parent',
version: '0.1.0-alpha.2',
// Brief, one-line summary of the package.
summary: 'A simple package that help enforces template\'s parent template.',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/meteoric124/template-assert-parent.git',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
var package_client_dependencies = [
"meteoric124:template-scope@0.1.0-beta.4",
'underscore',
'templating'
];
Package.onUse(function(api) {
api.versionsFrom('1.3.2.4');
api.use([ 'ecmascript' ]);
api.use(package_client_dependencies, 'client');
api.mainModule('lib/main.js', 'client');
});