This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.67 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@fireblink/keycloak-security-gateway",
"version": "1.5.1",
"description": "Node.js based proxy service to secure applications and integrate with Keycloak SSO flow.",
"keywords": [],
"engines": {
"node": ">=8.12.0"
},
"private": true,
"main": "dist/src/index.js",
"scripts": {
"commit": "npx git-cz",
"start": "node dist/src/",
"test": "nyc --reporter=html --reporter=text mocha",
"build": "rimraf ./dist/ && tsc",
"docker:test": "rimraf ./coverage && rimraf ./.nyc_output && docker-compose up --build --abort-on-container-exit",
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts index.ts",
"prettify": "prettier src/**/*.{md,ts,json} test/**/*.{md,ts,json} index.{md,ts,json} --write --config .prettierrc.yml && tslint 'src/**/*.ts' 'test/**/*.ts' 'index.ts' --fix",
"prepublishOnly": "npm run build",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"author": "FireBlink LTD",
"license": "MIT",
"dependencies": {
"@tsed/logger": "^5.5.0",
"axios": "0.19.2",
"config": "3.3.1",
"cookie": "0.4.1",
"ejs": "3.1.3",
"http-proxy": "1.18.1",
"js-yaml": "3.14.0",
"jsonwebtoken": "8.5.1",
"snyk": "^1.330.3"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@types/chai": "4.2.11",
"@types/config": "0.0.36",
"@types/cookie": "0.4.0",
"@types/ejs": "3.0.4",
"@types/express": "4.17.6",
"@types/http-proxy": "1.17.4",
"@types/jsonwebtoken": "8.5.0",
"@types/node": "14.0.5",
"@types/puppeteer": "3.0.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"commitizen": "4.1.2",
"conventional-changelog-cli": "2.0.34",
"cz-conventional-changelog": "3.2.0",
"express": "4.17.1",
"husky": "4.2.5",
"jsonlint": "1.6.3",
"lint-staged": "10.2.6",
"mocha": "7.2.0",
"mocha-typescript": "1.1.17",
"mochawesome": "6.1.1",
"nyc": "15.0.1",
"prettier": "2.0.5",
"puppeteer": "3.1.0",
"rimraf": "3.0.2",
"source-map-support": "0.5.19",
"ts-node": "8.10.1",
"tslint": "6.1.2",
"tslint-config-prettier": "1.18.0",
"typescript": "3.9.3"
},
"nyc": {
"cache": false,
"extension": [
".ts"
],
"exclude": [
"src/**/index.ts",
"src/interfaces/*.ts",
"**/*.d.ts",
"coverage/**"
],
"check-coverage": true,
"per-file": true,
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0,
"include": [
"src",
"dist/src"
]
},
"contributors": [
{
"name": "Vladyslav Tkachenko",
"email": "vlad@fireblink.com"
}
],
"snyk": true
}