forked from meteor-useraccounts/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
87 lines (75 loc) · 2.16 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
Package.describe({
summary: "Meteor sign up and sign in templates core package.",
version: "1.8.1",
name: "useraccounts:core",
git: "https://github.com/meteor-useraccounts/core.git",
});
Package.on_use(function(api) {
api.versionsFrom("[email protected]");
api.use([
"accounts-base",
"check",
"underscore",
"iron:router",
"reactive-var",
], ["client", "server"]);
api.use([
"blaze",
"reactive-dict",
], "client");
api.use([
"http"
], "server");
api.imply([
"accounts-base",
"softwarerero:[email protected]",
"iron:[email protected]",
], ["client", "server"]);
api.imply([
"templating",
], ["client"]);
api.add_files([
"lib/field.js",
"lib/core.js",
"lib/server.js",
"lib/methods.js",
], ["server"]);
api.add_files([
"lib/utils.js",
"lib/field.js",
"lib/core.js",
"lib/client.js",
"lib/templates_helpers/at_error.js",
"lib/templates_helpers/at_form.js",
"lib/templates_helpers/at_input.js",
"lib/templates_helpers/at_nav_button.js",
"lib/templates_helpers/at_oauth.js",
"lib/templates_helpers/at_pwd_form.js",
"lib/templates_helpers/at_pwd_form_btn.js",
"lib/templates_helpers/at_pwd_link.js",
"lib/templates_helpers/at_reCaptcha.js",
"lib/templates_helpers/at_result.js",
"lib/templates_helpers/at_sep.js",
"lib/templates_helpers/at_signin_link.js",
"lib/templates_helpers/at_signup_link.js",
"lib/templates_helpers/at_social.js",
"lib/templates_helpers/at_terms_link.js",
"lib/templates_helpers/at_title.js",
"lib/templates_helpers/at_message.js",
"lib/methods.js",
], ["client"]);
api.export([
"AccountsTemplates",
], ["client", "server"]);
});
Package.on_test(function(api) {
api.use("useraccounts:[email protected]");
api.use([
'accounts-password',
'tinytest',
'test-helpers'
], ['client', 'server']);
api.add_files([
"tests/tests.js",
], ["client", "server"]);
});