This repository was archived by the owner on Jun 9, 2026. It is now read-only.
forked from ForgeRock/node-openam-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.01 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@forgerock/openam-agent",
"version": "5.0.0",
"description": "OpenAM Policy Agent implementation for Express",
"author": "Zoltan Tarcsay <zoltan.tarcsay@forgerock.com>",
"repository": {
"type": "git",
"url": "https://github.com/ForgeRock/node-openam-agent.git"
},
"bugs": {
"url": "https://github.com/ForgeRock/node-openam-agent/issues"
},
"homepage": "https://github.com/ForgeRock/node-openam-agent/wiki",
"license": "MIT",
"keywords": [
"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.18.0",
"basic-auth": "^1.1.0",
"body-parser": "^1.18.3",
"cookie": "^0.2.0",
"express": "^4.16.4",
"handlebars": "^4.0.12",
"shortid": "^2.2.13",
"shutdown-handler": "^1.0.1",
"util.promisify": "^1.0.0",
"winston": "^3.1.0",
"xml2js": "^0.4.12",
"xmlbuilder": "^10.1.1"
},
"devDependencies": {
"@types/basic-auth": "^1.1.2",
"@types/express": "^4.16.0",
"@types/express-serve-static-core": "^4.17.0",
"@types/handlebars": "^4.0.39",
"@types/jest": "^23.3.9",
"@types/node": "^10.12.2",
"@types/shortid": "0.0.29",
"@types/xml2js": "^0.4.3",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-consistent-codestyle": "^1.14.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.1.6"
},
"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"
}
}