forked from ForgeRock/node-openam-agent-cache-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 932 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "@forgerock/openam-agent-cache-redis",
"description": "Cache using Redis for the OpenAM Policy Agent for NodeJS",
"version": "3.0.0",
"main": "dist/index.js",
"author": "Zoltan Tarcsay <zoltan.tarcsay@forgerock.com>",
"repository": {
"type": "git",
"url": "https://github.com/ForgeRock/node-openam-agent-cache-redis.git"
},
"scripts": {
"build": "tsc",
"lint": "tslint --format stylish --project tsconfig.json --config tslint.json",
"prebuild": "rm -rf dist",
"prepublish": "npm run build",
"test": "mocha test/*"
},
"license": "MIT",
"dependencies": {
"@forgerock/openam-agent": "^5.0.1",
"redis": "^2.8.0",
"util-promisifyall": "^1.0.6"
},
"devDependencies": {
"@types/node": "^13.1.8",
"mocha": "^3.4.2",
"tslint": "^6.0.0",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.7.5"
}
}