mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
dca3418bbd
Moves datasource, manager, platform and versioning code from lib/ into new lib/modules/ BREAKING CHANGE: External tools must update paths to datasource, manager, platform and versioning
27 lines
865 B
JavaScript
27 lines
865 B
JavaScript
// @ts-nocheck
|
|
Package.describe({
|
|
"name": "steffo:meteor-accounts-saml",
|
|
"summary": "SAML Login (SP) for Meteor. Works with OpenAM, OpenIDP and provides Single Logout.",
|
|
"version": "0.0.1",
|
|
"git": "https://github.com/steffow/meteor-accounts-saml.git"
|
|
});
|
|
|
|
Package.on_use(function(api) {
|
|
api.use("rocketchat:lib", "server");
|
|
api.use("ecmascript");
|
|
api.use(["routepolicy", "webapp", "underscore", "service-configuration"], "server");
|
|
api.use(["http", "accounts-base"], ["client", "server"]);
|
|
|
|
api.add_files(["saml_server.js", "saml_utils.js"], "server");
|
|
api.add_files(["saml_rocketchat.js"], "server");
|
|
api.add_files("saml_client.js", "client");
|
|
});
|
|
|
|
Npm.depends({
|
|
"xml2js": "0.2.0",
|
|
"xml-crypto": "0.6.0",
|
|
"xmldom": "0.1.19",
|
|
"connect": "2.7.10",
|
|
"xmlbuilder": "2.6.4",
|
|
"querystring": "0.2.0"
|
|
});
|