mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
22 lines
455 B
JavaScript
22 lines
455 B
JavaScript
Package.describe({
|
|
summary: "Encrypt account secrets stored in the database",
|
|
version: '1.0.10'
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use("npm-node-aes-gcm@=0.1.3_6");
|
|
|
|
api.export("OAuthEncryption", ["server"]);
|
|
api.use([
|
|
"underscore",
|
|
"ejson"
|
|
]);
|
|
api.addFiles("encrypt.js", ["server"]);
|
|
});
|
|
|
|
Package.onTest(function (api) {
|
|
api.use("tinytest");
|
|
api.use("oauth-encryption");
|
|
api.addFiles("encrypt_tests.js", ["server"]);
|
|
});
|