-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
27 lines (23 loc) · 909 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
Package.describe({
name: "znewsham:auto-encrypt",
version: "0.1.4",
summary: "Provides a MongoDB like auto-encrypt feature for self-hosted clusters",
git: 'https://github.com/znewsham/meteor-auto-encrypt',
documentation: 'README.md'
});
Npm.depends({
"mongodb-client-encryption": "1.1.0",
mongodb: "3.5.9",
// chai: "4.2.0", // - enable for testing
// "babel-plugin-istanbul": "5.2.0" // - enable for testing
});
Package.onUse((api) => {
api.versionsFrom(["[email protected]"]);
api.use(["ecmascript", "mongo", "ejson"]);
api.mainModule("server.js", "server");
api.mainModule("client.js", "client");
});
Package.onTest((api) => {
api.use(["lmieulet:[email protected]", "lmieulet:[email protected]", "lmieulet:[email protected]", "ecmascript", "meteortesting:mocha", "mongo", "ejson", "znewsham:auto-encrypt"]);
api.mainModule("tests.js", "server");
});