You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-09-21 15:21:57 +03:00
50 lines
1.4 KiB
JSON
50 lines
1.4 KiB
JSON
{
|
|
"name": "@redis/entraid",
|
|
"version": "5.0.1",
|
|
"license": "MIT",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/",
|
|
"!dist/tsconfig.tsbuildinfo"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"build": "npm run clean && tsc",
|
|
"start:auth-pkce": "tsx --tsconfig tsconfig.samples.json ./samples/auth-code-pkce/index.ts",
|
|
"start:interactive-browser": "tsx --tsconfig tsconfig.samples.json ./samples/interactive-browser/index.ts",
|
|
"test-integration": "mocha -r tsx --tsconfig tsconfig.integration-tests.json './integration-tests/**/*.spec.ts'",
|
|
"test": "nyc -r text-summary -r lcov mocha -r tsx './lib/**/*.spec.ts'"
|
|
},
|
|
"dependencies": {
|
|
"@azure/identity": "^4.7.0",
|
|
"@azure/msal-node": "^2.16.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@redis/client": "^5.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/express-session": "^1.18.0",
|
|
"@types/node": "^22.9.0",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.21.1",
|
|
"express-session": "^1.18.1",
|
|
"@redis/test-utils": "*"
|
|
},
|
|
"engines": {
|
|
"node": ">= 18"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/redis/node-redis.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/redis/node-redis/issues"
|
|
},
|
|
"homepage": "https://github.com/redis/node-redis/tree/master/packages/entraid",
|
|
"keywords": [
|
|
"redis"
|
|
]
|
|
}
|