-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 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
51
52
53
54
55
56
{
"name": "@secvisogram/csaf-validator-lib",
"type": "module",
"license": "MIT",
"scripts": {
"pretest": "tsc -b .",
"test": "prettier --check . && node scripts/test.js",
"pretest-report": "tsc -b .",
"test-report": "prettier --check . && node scripts/test.js --reporter json > test-results.json",
"test-coverage": "c8 node scripts/test.js",
"test-coverage-lcov": "c8 --reporter lcovonly node scripts/test.js"
},
"repository": {
"url": "https://github.com/secvisogram/csaf-validator-lib"
},
"keywords": [
"csaf",
"csaf-validator-lib",
"csaf full validator",
"secvisogram"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@js-joda/core": "^5.6.1",
"@js-joda/timezone": "^2.18.2",
"ajv": "^8.11.2",
"ajv-formats": "^3.0.1",
"bcp47": "^1.1.2",
"cvss2js": "^1.1.0",
"json-pointer": "^0.6.1",
"lodash": "^4.17.21",
"packageurl-js": "^2.0.1",
"semver": "^7.5.4",
"temporal-polyfill": "^0.3.0",
"undici": "^6.23.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/json-pointer": "^1.0.31",
"@types/lodash": "^4.14.195",
"@types/mocha": "^10.0.10",
"@types/node": "^24.1.0",
"@types/prettier": "^2.7.3",
"@types/semver": "^7.5.0",
"@types/xml2js": "^0.4.11",
"c8": "^10.1.3",
"chai": "^4.3.7",
"mocha": "^12.0.0-beta-9",
"prettier": "^2.8.1",
"typescript": "^5.7.3",
"xml2js": "^0.5.0"
},
"version": "2.0.22"
}