-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.12 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
{
"name": "ssvc",
"version": "0.1.3",
"description": "TypeScript implementation of SSVC (Stakeholder-Specific Vulnerability Categorization). A prioritization framework to triage CVE vulnerabilities as an alternative or compliment to CVSS",
"main": "src/index.ts",
"keywords": ["vulnerabilities", "prioritization", "triage", "CVE", "CVSS", "SSVC", "CISA", "FIRST"],
"scripts": {
"version": "node -e \"console.log(require('./package.json').version)\"",
"test": "npx jest --coverage",
"watch": "npx tsc -w",
"build": "npx tsc --pretty"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trivialsec/typescript-ssvc.git"
},
"author": "Christopher Langton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/trivialsec/typescript-ssvc/issues"
},
"homepage": "https://github.com/trivialsec/typescript-ssvc#readme",
"dependencies": {
"ts-enum-util": "^4.1.0",
"zod": "^3.23.8"
}
}