-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.4 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
44
45
46
47
48
49
50
{
"name": "ssvc",
"version": "0.4.1",
"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",
"generate-plugins": "npx ts-node scripts/generate-plugins.ts"
},
"dependencies": {
"jsonpath-plus": "^10.3.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/jsonpath-plus": "^5.0.5",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"jest": "^29.7.0",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trivialsec/typescript-ssvc.git"
},
"author": "Christopher Langton <chris@langton.cloud>",
"license": "MIT",
"bugs": {
"url": "https://github.com/trivialsec/typescript-ssvc/issues"
},
"homepage": "https://github.com/trivialsec/typescript-ssvc#readme",
"packageManager": "yarn@4.9.2"
}