openam-agent-custom
Version:
Customized ForgeRock AM Policy Agent for Node.js from Zoltan Tarcsay
75 lines (74 loc) • 1.75 kB
JSON
{
"name": "openam-agent-custom",
"version": "1.2.0",
"description": "Customized ForgeRock AM Policy Agent for Node.js from Zoltan Tarcsay",
"license": "MIT",
"keywords": [
"ForgeRock",
"Access Management",
"OpenAM",
"Policy",
"Agent"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc && cp -r src/templates dist",
"test": "jest",
"lint": "tslint --format stylish --project tsconfig.json --config tslint.json",
"prepublish": "npm run build"
},
"dependencies": {
"axios": "^0.19.0",
"basic-auth": "^1.1.0",
"body-parser": "^1.19.0",
"cookie": "^0.4.0",
"express": "^4.17.1",
"handlebars": "^4.7.6",
"shortid": "^2.2.15",
"shutdown-handler": "^1.0.1",
"util.promisify": "^1.0.0",
"winston": "^3.2.1",
"xml2js": "^0.4.23",
"xmlbuilder": "^13.0.2"
},
"devDependencies": {
"@types/basic-auth": "^1.1.2",
"@types/express": "^4.17.2",
"@types/handlebars": "^4.1.0",
"@types/jest": "^24.0.25",
"@types/node": "^10.17.13",
"@types/shortid": "0.0.29",
"@types/xml2js": "^0.4.5",
"jest": "^26.0.1",
"ts-jest": "^26.1.0",
"tslint": "^5.20.1",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.7.4"
},
"engines": {
"node": ">=6"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"!src/__mocks__",
"!src/testing",
"!src/**/*.spec.ts"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
}
}