forked from ossf-cve-benchmark/ossf-cve-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.29 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ossf-cve-benchmark",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc && npx webpack --config contrib/reports/explore-server/webpack.config.js && echo OK",
"update-json-schema": "bash bin/update-json-schema.sh",
"lint": "npx eslint && npx prettier -c .",
"test": "npx jest",
"all-checks": "npx tsc && npx eslint && npx jest && npx prettier -c . && bin/cli validate --schema BCVE CVEs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ossf-cve-benchmarking/ossf-cve-benchmark.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ossf-cve-benchmarking/ossf-cve-benchmark/issues"
},
"homepage": "https://github.com/ossf-cve-benchmarking/ossf-cve-benchmark#readme",
"engines": {
"node": ">=12.12.0",
"npm": ">=7.0.0"
},
"devDependencies": {
"@adobe/jsonschema2md": "^4.2.2",
"@types/argparse": "^2.0.4",
"@types/codemirror": "0.0.106",
"@types/fs-extra": "^9.0.4",
"@types/jest": "^26.0.20",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.14.21",
"@types/react": "^17.0.0",
"@types/react-codemirror": "^1.0.3",
"@types/react-dom": "^17.0.0",
"@types/react-tabs": "^2.3.2",
"@types/sarif": "^2.1.3",
"@types/table": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"css-loader": "^5.0.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"source-map-loader": "^1.1.2",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.4",
"ts-json-schema-generator": "^0.83.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.2",
"webpack": "^5.15.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"ajv": "^6.12.6",
"argparse": "^2.0.1",
"axios": "^0.21.0",
"codemirror": "^5.59.2",
"csv-string": "^4.0.1",
"fs-extra": "^9.1.0",
"immutable": "^4.0.0-rc.12",
"material-table": "^1.69.2",
"popper.js": "^1.16.1",
"react": "^17.0.1",
"react-codemirror2": "^7.2.1",
"react-dom": "^17.0.1",
"react-tabs": "^3.1.2",
"table": "^6.0.7",
"ts-loader": "^8.0.11"
}
}