meteor-accounts-saml/package.js

67 lines
1.8 KiB
JavaScript
Raw Normal View History

2015-08-03 16:11:23 +02:00
Package.describe({
name:"steffo:meteor-accounts-saml",
2015-08-10 14:12:34 +02:00
summary: "SAML Login (SP) for Meteor. Works with OpenAM, OpenIDP and provides Single Logout.",
2018-08-14 20:55:29 +02:00
version: "0.0.16",
git: "https://github.com/steffow/meteor-accounts-saml.git"
2015-08-03 16:11:23 +02:00
});
Package.on_use(function (api) {
2017-04-12 17:53:57 +02:00
api.versionsFrom('1.4.4.1');
2015-08-03 16:11:23 +02:00
api.use(['routepolicy','webapp','underscore', 'service-configuration'], 'server');
api.use(['http','accounts-base','random'], ['client', 'server']);
2015-08-03 16:11:23 +02:00
api.add_files(['saml_server.js','saml_utils.js'], 'server');
api.add_files('saml_client.js', 'client');
});
2017-04-12 17:53:57 +02:00
Package.onTest((api) => {
// Sets up a dependency on this package.
api.use('steffo:meteor-accounts-saml');
// Use the Mocha test framework.
api.use('practicalmeteor:mocha@2.4.5_2');
});
2015-08-03 16:11:23 +02:00
Npm.depends({
2017-04-12 17:53:57 +02:00
"depd": "1.1.0",
2017-07-20 17:44:14 +02:00
"xml-crypto": "0.9.0",
"body-parser": "1.17.1",
2017-04-12 17:53:57 +02:00
"bytes": "2.5.0",
"content-type": "1.0.2",
"debug": "2.6.3",
"ms": "1.0.0",
"http-errors": "1.6.1",
"inherits": "2.0.3",
"setprototypeof": "1.0.3",
"statuses": "1.3.1",
"iconv-lite": "0.4.15",
"on-finished": "2.3.0",
"ee-first": "1.1.1",
"qs": "6.4.0",
"raw-body": "2.2.0",
"unpipe": "1.0.0",
"type-is": "1.6.15",
"media-typer": "0.3.0",
"mime-types": "2.1.15",
"xml2js": "0.4.17",
"sax": "1.2.2",
"xmlbuilder": "9.0.0",
"ejs": "2.5.6",
"async": "2.3.0",
"lodash":"4.17.4",
"xpath": "0.0.24",
"node-forge": "0.7.1",
"xpath.js": "1.0.7",
"xmldom": "0.1.27",
"connect": "3.6.0",
2018-02-14 21:19:23 +01:00
"querystring": "0.2.0",
2018-08-14 20:55:29 +02:00
"arraybuffer-to-string": "1.0.1",
"xml-encryption": "0.11.1"
2015-08-03 16:11:23 +02:00
});
// Npm.depends({
// "depd": "1.1.0",
// "xml-crypto": "0.9.0",
// "xmlbuilder": "9.0.0",
// "xml2js": "0.4.17"
// });