-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 925 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 925 Bytes
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
{
"name": "scb-finding-post-processing",
"version": "1.0.0",
"description": "secureCodeBox v2 Finding Post Processing Hook",
"main": "hook.js",
"scripts": {
"build": "npx typescript hook.ts --sourceMap",
"test": "jest ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/secureCodeBox/secureCodeBox.git"
},
"keywords": [
"secureCodeBox",
"security",
"hook"
],
"author": {
"name": "iteratec GmbH",
"email": "security@iteratec.com",
"url": "https://www.iteratec.com"
},
"contributors": [
{
"name": "Yannik Fuhrmeister",
"url": "https://github.com/fuhrmeistery"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/secureCodeBox/secureCodeBox/issues"
},
"homepage": "https://www.secureCodeBox.io",
"dependencies": {
"lodash": "^4.17.20"
},
"devDependencies": {
"jest": "^27.0.3"
}
}