Skip to content

Commit

Permalink
Modify package scope from @Passify to @authenio
Browse files Browse the repository at this point in the history
  • Loading branch information
tngan committed Mar 13, 2019
1 parent 7a905ff commit 76130f2
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 19 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ ifeq ($(SAML_VALIDATOR), javac)
@echo "Installing java xsd schema validator ...";
# for java runtime support library
# need to run with npm install, yarn add --ignore-scripts will ignore the postinstall script
# check more information in the package.json of @passify/xsd-schema-validator
npm install @passify/xsd-schema-validator;
# check more information in the package.json of @authenio/xsd-schema-validator
npm install @authenio/xsd-schema-validator;

else ifeq ($(SAML_VALIDATOR), libxml)
@echo "Installing libxml-xsd ...";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"license": "MIT",
"dependencies": {
"@passify/xml-encryption": "^0.11.1",
"@authenio/xml-encryption": "^0.11.1",
"deflate-js": "^0.2.3",
"lodash": "^4.17.10",
"node-forge": "^0.7.5",
Expand Down
2 changes: 1 addition & 1 deletion src/libsaml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { MetadataInterface } from './metadata';
import { isObject, isUndefined, includes, flattenDeep, camelCase } from 'lodash';
import * as nrsa from 'node-rsa';
import { SignedXml, FileKeyInfo } from 'xml-crypto';
import * as xmlenc from '@passify/xml-encryption';
import * as xmlenc from '@authenio/xml-encryption';
import { extract } from './extractor';
import { getValidatorModule } from './schema-validator';

Expand Down
2 changes: 1 addition & 1 deletion src/schema-validator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as fs from 'fs';
import * as path from 'path';

enum SchemaValidators {
JAVAC = '@passify/xsd-schema-validator',
JAVAC = '@authenio/xsd-schema-validator',
LIBXML = 'libxml-xsd',
XMLLINT = 'node-xmllint'
}
Expand Down
25 changes: 11 additions & 14 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
# yarn lockfile v1


"@authenio/xml-encryption@^0.11.1":
version "0.11.2"
resolved "https://registry.yarnpkg.com/@authenio/xml-encryption/-/xml-encryption-0.11.2.tgz#789125b3c4254e6dcec6ec1e0e29664f3aa4f0a4"
integrity sha512-dRZBrdZDTKGE9xOR2E8aPBLTsg8u36DdvGSjIai7UoL4ANyb2NglQyRWlnGEUv4WfwLNaFFP+MlU/jBZGWcUow==
dependencies:
async "^2.1.5"
ejs "^2.5.6"
node-forge "^0.7.4"
xmldom "~0.1.15"
xpath "0.0.27"

"@ava/babel-plugin-throws-helper@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-3.0.0.tgz#2c933ec22da0c4ce1fc5369f2b95452c70420586"
Expand Down Expand Up @@ -288,16 +299,6 @@
dependencies:
arrify "^1.0.1"

"@passify/xml-encryption@^0.11.1":
version "0.11.1"
resolved "https://registry.yarnpkg.com/@passify/xml-encryption/-/xml-encryption-0.11.1.tgz#750763d9f16430ee46e745daf05e2b3490e7de3e"
dependencies:
async "^2.1.5"
ejs "^2.5.6"
node-forge "^0.7.4"
xmldom "~0.1.15"
xpath "0.0.24"

"@types/lodash@^4.14.112":
version "4.14.116"
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.116.tgz#5ccf215653e3e8c786a58390751033a9adca0eb9"
Expand Down Expand Up @@ -3850,10 +3851,6 @@ [email protected], xmldom@^0.1.19, xmldom@~0.1.15:
version "0.1.27"
resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9"

[email protected]:
version "0.0.24"
resolved "https://registry.yarnpkg.com/xpath/-/xpath-0.0.24.tgz#1ade162e1cc523c8d39fc7d06afc16ea216f29fb"

[email protected], xpath@^0.0.27:
version "0.0.27"
resolved "https://registry.yarnpkg.com/xpath/-/xpath-0.0.27.tgz#dd3421fbdcc5646ac32c48531b4d7e9d0c2cfa92"
Expand Down

0 comments on commit 76130f2

Please sign in to comment.