forked from meteor-useraccounts/flow-routing
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.js
39 lines (33 loc) · 922 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Package.describe({
name: 'mealsunite:flow-routing-extra',
summary: 'UserAccounts package providing routes configuration capability via ostrio/flow-router-extra.',
version: '2.0.2',
git: 'https://github.com/MealsUnite/flow-routing.git',
});
Package.onUse(function(api) {
api.versionsFrom('[email protected]');
api.use([
'check',
'ostrio:flow-router-extra',
'underscore',
'ecmascript',
'useraccounts:core',
'modules'
], ['client', 'server']);
api.imply([
'ostrio:[email protected]',
'useraccounts:[email protected]',
], ['client', 'server']);
api.use([
'kadira:[email protected]',
'gadicc:[email protected]'
], ['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']);
});