-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.js
43 lines (37 loc) · 1.53 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
Package.describe({
name: 'planifica:encryption',
version: '0.0.5',
// Brief, one-line summary of the package.
summary: 'Client-Side Encryption for Mongo Collections',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/Planifica/encryption',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.1.0.2');
api.use(['underscore', 'check'], ['client', 'server']);
api.use('u2622:[email protected]', 'client');
api.use('aldeed:[email protected]');
api.use('ongoworks:[email protected]');
api.use('matb33:[email protected]');
api.use('robertlowe:[email protected]', 'client');
api.use('jparker:[email protected]', 'client');
api.use('jparker:[email protected]', 'client');
api.use('dburles:[email protected]', ['server']);
api.use('practicalmeteor:[email protected]', 'client');
api.addFiles('tweetnacl-js-master/nacl-fast.min.js', 'client');
api.addFiles('principals.js', ['client', 'server']);
api.addFiles('server.js', 'server');
api.addFiles('utils.js', 'client');
api.addFiles('EncryptionUtils.js', 'client');
api.addFiles('CollectionEncryption.js', 'client');
api.export('CollectionEncryption');
api.export('EncryptionUtils');
api.export('Principals');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('planifica:encryption');
});