-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "@securecodebox/hook-notification",
"version": "1.0.0",
"description": "secureCodeBox Hook for Notification",
"main": "hook.js",
"scripts": {
"lint": "tsc hook.ts --noEmit --skipLibCheck",
"build": "esbuild --platform=node --target=node22 --format=esm --outdir=./build/ --sourcemap **/*.ts *.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/secureCodeBox/secureCodeBox.git"
},
"keywords": [
"secureCodeBox",
"security",
"hook"
],
"author": "iteratec GmbH",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/secureCodeBox/secureCodeBox/issues"
},
"homepage": "https://github.com/secureCodeBox/secureCodeBox#readme",
"devDependencies": {
"@kubernetes/client-node": "^1.3.0",
"@types/jest": "^30.0.0",
"@types/lodash-es": "^4.17.12",
"@types/mustache": "^4.1.2",
"@types/node": "^22.16.2",
"@types/nodemailer": "^6.4.4",
"@types/nunjucks": "^3.1.5",
"esbuild": "^0.25.6",
"typescript": "^5.8.3"
},
"dependencies": {
"@types/js-yaml": "^4.0.2",
"js-yaml": "^4.1.1",
"lodash-es": "^4.17.23",
"nodemailer": "^8.0.5",
"nunjucks": "^3.2.4"
}
}