Initial Commit
Some checks failed
Publish to Private NPM Registry / publish (push) Failing after 1m0s

This commit is contained in:
Alan Bridgeman 2026-02-17 13:44:22 -06:00
commit 18cc482293
12 changed files with 4353 additions and 0 deletions

36
package.json Normal file
View file

@ -0,0 +1,36 @@
{
"name": "@BridgemanAccessible/ba-auth_keystore_file",
"version": "1.0.0",
"description": "A file based Keystore implementation for use in combination with the Bridgeman Accessible Auth Package",
"main": "index.js",
"types": "index.d.ts",
"repository": "https://git.bridgemanaccessible.ca/Bridgeman-Accessible/ba-auth_keystore_file.git",
"author": "Bridgeman Accessible<info@bridgemanaccessible.ca>",
"type": "module",
"exports": {
".": {
"default": "./index.js",
"types": "./index.d.ts"
}
},
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"@types/node-jose": "^1.1.13",
"cross-env": "^10.1.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"dependencies": {
"@BridgemanAccessible/ba-auth": "^1.0.30",
"@BridgemanAccessible/ba-logging": "^1.0.1",
"node-jose": "^2.2.0"
},
"packageManager": "yarn@1.22.22"
}