0
0
Fork 0

Add Hapi's basic auth library

This commit is contained in:
Oliver-Akins 2021-07-23 11:48:07 -06:00
parent 8a119767be
commit 4c039d713f
2 changed files with 40 additions and 0 deletions

38
package-lock.json generated
View file

@ -9,8 +9,10 @@
"version": "1.0.0", "version": "1.0.0",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@hapi/basic": "^6.0.0",
"@hapi/boom": "^9.1.3", "@hapi/boom": "^9.1.3",
"@hapi/hapi": "^20.1.5", "@hapi/hapi": "^20.1.5",
"@types/hapi__basic": "^5.1.2",
"@types/hapi__hapi": "^20.0.9", "@types/hapi__hapi": "^20.0.9",
"@types/node": "^16.3.1", "@types/node": "^16.3.1",
"axios": "^0.21.1", "axios": "^0.21.1",
@ -49,6 +51,15 @@
"@hapi/hoek": "9.x.x" "@hapi/hoek": "9.x.x"
} }
}, },
"node_modules/@hapi/basic": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/@hapi/basic/-/basic-6.0.0.tgz",
"integrity": "sha512-nWWSXNCq3WptnP3To2c8kfQiRFDUnd9FQOcMS0B85y1x/m12c0hhp+VdmK60BMe44k6WIog1n6g8f9gZOagqBg==",
"dependencies": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x"
}
},
"node_modules/@hapi/boom": { "node_modules/@hapi/boom": {
"version": "9.1.3", "version": "9.1.3",
"resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.3.tgz", "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.3.tgz",
@ -339,6 +350,15 @@
"@types/node": "*" "@types/node": "*"
} }
}, },
"node_modules/@types/hapi__basic": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/@types/hapi__basic/-/hapi__basic-5.1.2.tgz",
"integrity": "sha512-sqoQ34nwmRlNgQ5fdHHnghyVzs23aC2d30l9G1sKvdrh4PDV22bnQ+8fBCjoItT+0gGSuXIoG4qdoVZGBjH5EQ==",
"dependencies": {
"@types/hapi__hapi": "*",
"joi": "^17.3.0"
}
},
"node_modules/@types/hapi__catbox": { "node_modules/@types/hapi__catbox": {
"version": "10.2.4", "version": "10.2.4",
"resolved": "https://registry.npmjs.org/@types/hapi__catbox/-/hapi__catbox-10.2.4.tgz", "resolved": "https://registry.npmjs.org/@types/hapi__catbox/-/hapi__catbox-10.2.4.tgz",
@ -599,6 +619,15 @@
"@hapi/hoek": "9.x.x" "@hapi/hoek": "9.x.x"
} }
}, },
"@hapi/basic": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/@hapi/basic/-/basic-6.0.0.tgz",
"integrity": "sha512-nWWSXNCq3WptnP3To2c8kfQiRFDUnd9FQOcMS0B85y1x/m12c0hhp+VdmK60BMe44k6WIog1n6g8f9gZOagqBg==",
"requires": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x"
}
},
"@hapi/boom": { "@hapi/boom": {
"version": "9.1.3", "version": "9.1.3",
"resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.3.tgz", "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.3.tgz",
@ -877,6 +906,15 @@
"@types/node": "*" "@types/node": "*"
} }
}, },
"@types/hapi__basic": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/@types/hapi__basic/-/hapi__basic-5.1.2.tgz",
"integrity": "sha512-sqoQ34nwmRlNgQ5fdHHnghyVzs23aC2d30l9G1sKvdrh4PDV22bnQ+8fBCjoItT+0gGSuXIoG4qdoVZGBjH5EQ==",
"requires": {
"@types/hapi__hapi": "*",
"joi": "^17.3.0"
}
},
"@types/hapi__catbox": { "@types/hapi__catbox": {
"version": "10.2.4", "version": "10.2.4",
"resolved": "https://registry.npmjs.org/@types/hapi__catbox/-/hapi__catbox-10.2.4.tgz", "resolved": "https://registry.npmjs.org/@types/hapi__catbox/-/hapi__catbox-10.2.4.tgz",

View file

@ -21,8 +21,10 @@
}, },
"homepage": "https://github.com/Oliver-Akins/Quote-Bracket#readme", "homepage": "https://github.com/Oliver-Akins/Quote-Bracket#readme",
"dependencies": { "dependencies": {
"@hapi/basic": "^6.0.0",
"@hapi/boom": "^9.1.3", "@hapi/boom": "^9.1.3",
"@hapi/hapi": "^20.1.5", "@hapi/hapi": "^20.1.5",
"@types/hapi__basic": "^5.1.2",
"@types/hapi__hapi": "^20.0.9", "@types/hapi__hapi": "^20.0.9",
"@types/node": "^16.3.1", "@types/node": "^16.3.1",
"axios": "^0.21.1", "axios": "^0.21.1",