-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
28 lines (26 loc) · 986 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
Package.describe({
name: 'cenk:useraccounts-password-strength',
version: '0.0.2',
summary: 'Allows you to set strong passwords for your meteor-useraccounts enabled application.',
git: 'https://github.com/cdolek/useraccounts-password-strength',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.3.2.4');
api.use('ecmascript');
api.use(['useraccounts:[email protected]', 'accounts-password', 'check']);
api.use(['templating'], 'client');
api.export(['AccountsTemplates']);
api.addFiles([
'atTextInputWithPasswordStrength.css',
'atTextInputWithPasswordStrength.html',
'atTextInputWithPasswordStrength.js'
], 'client');
api.mainModule('useraccounts-password-strength.js');
});
Package.onTest(function(api) {
api.use('ecmascript');
api.use('tinytest');
// api.use('cenk:useraccounts-password-strength');
api.mainModule('useraccounts-password-strength-tests.js');
});