forked from meteor-useraccounts/flow-routing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
48 lines (41 loc) · 1.15 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Package metadata for Meteor.js web platform (https://www.meteor.com/)
// This file is defined within the Meteor documentation at
//
// http://docs.meteor.com/#/full/packagejs
//
// and it is needed to define a Meteor package
'use strict';
Package.describe({
name: 'nxcong:flow-routing',
summary: 'UserAccounts package providing routes configuration capability via ostrio:flow-router-extra.',
version: '1.14.3',
git: 'https://github.com/cafe4it/flow-routing.git',
});
Package.onUse(function(api) {
api.versionsFrom('1.4');
api.use([
'check',
'ecmascript',
'ostrio:flow-router-extra',
'underscore',
'useraccounts:core',
'modules'
], ['client', 'server']);
api.imply([
'ostrio:flow-router-extra@3.1.1',
'useraccounts:core@1.14.2',
], ['client', 'server']);
api.use([
'react@0.14.1_1',
'kadira:blaze-layout@2.3.0',
'kadira:react-layout@1.5.2',
'gwendall:blaze-to-react@0.1.2'
], ['client', 'server'], { weak: true });
api.addFiles([
'lib/core.js',
], ['client', 'server']);
api.addFiles([
'lib/client/client.js',
'lib/client/templates_helpers/at_input.js',
], ['client']);
});