-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
35 lines (29 loc) · 750 Bytes
/
package.js
File metadata and controls
35 lines (29 loc) · 750 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
26
27
28
29
30
31
32
33
34
35
Package.describe({
name: 'peerlibrary:blaze-layout-component',
summary: "A simple Blaze Component for use with Flow Router's layout manager",
version: '0.3.0',
git: 'https://github.com/peerlibrary/meteor-blaze-layout-component.git'
});
Package.onUse(function (api) {
api.versionsFrom('METEOR@1.8.1');
// Core dependencies.
api.use([
'coffeescript@2.4.1',
'underscore'
]);
// 3rd party dependencies.
api.use([
'peerlibrary:blaze-components@0.23.0',
'kadira:blaze-layout@2.3.0',
'peerlibrary:computed-field@0.10.0',
'peerlibrary:assert@0.3.0'
]);
api.export('BlazeLayoutComponent');
api.addFiles([
'layout.coffee'
]);
api.addFiles([
'root.html',
'root.coffee'
], 'client');
});