-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
85 lines (85 loc) · 2.09 KB
/
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
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
83
84
85
{
"name": "@forgerock/openam-agent",
"version": "5.1.5",
"description": "ForgeRock AM Policy Agent for Node.js",
"author": "Zoltan Tarcsay <[email protected]>",
"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": [
"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",
"prepublishOnly": "npm run lint && npm test && npm run build",
"docs": "typedoc --out docs src"
},
"dependencies": {
"axios": "^0.28.0",
"basic-auth": "^2.0.1",
"body-parser": "^1.20.0",
"cookie": "^0.5.0",
"express": "~4.19.2",
"handlebars": "^4.7.7",
"shortid": "^2.2.16",
"shutdown-handler": "^1.0.1",
"util.promisify": "^1.1.1",
"winston": "^3.7.2",
"xml2js": "^0.5.0",
"xmlbuilder": "^13.0.2"
},
"devDependencies": {
"@types/basic-auth": "^1.1.3",
"@types/express": "^4.17.13",
"@types/handlebars": "^4.1.0",
"@types/jest": "^28.1.3",
"@types/node": "^16.11.41",
"@types/shortid": "0.0.29",
"@types/xml2js": "^0.4.11",
"jest": "^28.1.1",
"ts-jest": "^28.0.5",
"tslint": "^6.1.3",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.22.17",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=10"
},
"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"
}
}