-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
71 lines (70 loc) · 1.77 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
Package.describe({
name: 'urbanetic:accounts-ui',
summary: 'Simple UI for Meteor Accounts',
git: 'https://github.com/urbanetic/meteor-accounts-ui.git',
version: '0.5.1'
});
Package.on_use(function(api) {
api.versionsFrom('[email protected]');
api.use([
'accounts-password',
'coffeescript',
'email',
'http',
'underscore',
'aldeed:[email protected]',
'aldeed:[email protected]',
'aramk:[email protected]_1',
'aramk:[email protected]',
'digilord:[email protected]',
'matb33:[email protected]',
'urbanetic:[email protected]'
], ['client', 'server']);
api.use([
'templating',
'jquery',
'less',
'aldeed:[email protected]',
'aramk:[email protected]'
], 'client');
api.use([
'urbanetic:[email protected]'
], 'server', {weak: true});
api.use([
'aramk:[email protected]'
], ['client', 'server'], {weak: true});
api.imply(['accounts-password', 'digilord:roles', 'aldeed:autoform']);
api.addFiles([
'src/AccountsUi.coffee',
'src/AccountsUtil.coffee'
], ['client', 'server']);
api.addFiles([
'src/AccountsForm.coffee',
'src/accounts-ui.less',
'src/loginForm.html',
'src/loginForm.coffee',
'src/forgotPasswordForm.html',
'src/forgotPasswordForm.coffee',
'src/resetPasswordForm.html',
'src/resetPasswordForm.coffee',
'src/signUpForm.html',
'src/signUpForm.coffee',
'src/userNav.html',
'src/userNav.coffee',
'src/userForm.html',
'src/userForm.coffee',
'src/usersTable.html',
'src/usersTable.coffee',
'src/verifyForm.html',
'src/verifyForm.coffee'
], 'client');
api.addFiles([
'src/users.coffee'
], ['server']);
api.export([
'AccountsUi',
'AccountsUtil'
], ['client', 'server']);
});