48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"name": "auth-guardian",
|
|
"version": "2.1.3",
|
|
"description": "auth-guardian a library for enhancing application security",
|
|
"main": "./dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"build": "tsc",
|
|
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/kajvan/guardian"
|
|
},
|
|
"keywords": [
|
|
"security",
|
|
"authentication",
|
|
"password",
|
|
"jwt",
|
|
"rate limiting"
|
|
],
|
|
"author": "kaj van schalkwijk",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@types/bcrypt": "^6.0.0",
|
|
"@types/jsonwebtoken": "9.0.10",
|
|
"bcrypt": "^6.0.0",
|
|
"jsonwebtoken": "^9.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"jest": "^30.2.0",
|
|
"ts-jest": "^29.4.6",
|
|
"ts-node": "^10.9.2"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"require": "./dist/cjs/index.js",
|
|
"import": "./dist/esm/index.js",
|
|
"default": "./dist/esm/index.js"
|
|
}
|
|
}
|
|
} |