forked from secvisogram/secvisogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.03 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
{
"name": "secvisogram",
"private": true,
"description": "Secvisogram build infrastructure",
"scripts": {
"dev": "cd app && npm run dev",
"build": "cd app && npm run build",
"test": "tsc -b . && cd app && npm test",
"postinstall": "npm run -s install:app && npm run -s install:bin && npm run -s install:csaf-validator-lib",
"install:app": "cd app && npm ci",
"install:bin": "cd bin && npm ci",
"install:csaf-validator-lib": "cd csaf-validator-lib && npm ci",
"generate-html-template": "node bin/cli.js generate-html-template --csaf app/lib/shared/Core/csaf_2.0.json --cvss-3.1 app/lib/shared/Core/cvss-v3.1.json > app/lib/SecvisogramPage/View/shared/HTMLTemplate/Template.html"
},
"repository": {
"type": "git",
"url": "[email protected]:secvisogram/secvisogram.git"
},
"keywords": [
"CSAF",
"Secvisogram",
"Common Security Advisory Framework"
],
"author": "eXXcellent solutions GmbH",
"license": "MIT",
"devDependencies": {
"prettier": "^2.5.1",
"typescript": "^4.7.4"
}
}