token-guardian
Version:
A comprehensive solution for protecting and managing API tokens and secrets
53 lines (52 loc) • 1.26 kB
JSON
{
"name": "token-guardian",
"version": "1.0.1",
"type": "commonjs",
"description": "A comprehensive solution for protecting and managing API tokens and secrets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"postinstall": "node scripts/install-hooks.js",
"precommit": "ts-node scripts/pre-commit.ts"
},
"keywords": [
"security",
"tokens",
"secrets",
"api-keys",
"jwt",
"rotation",
"canary-tokens"
],
"author": "",
"license": "MIT",
"dependencies": {
"@types/jsonwebtoken": "^9.0.9",
"axios": "^1.6.7",
"events": "^3.3.0",
"glob": "^10.3.12",
"jsonwebtoken": "^9.0.2",
"rimraf": "^5.0.10",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^9.23.0",
"eslint-plugin-react": "^7.37.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=14.0.0"
}
}