-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
{
"name": "cve-utils",
"version": "1.0.1+update_2023-08-01",
"description": "CLI utility for working with CVEs",
"type": "module",
"engines": {
"node": ">= 18.16 <19"
},
"devDependencies": {
"@types/jest": "~27.5",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "~5.26",
"@typescript-eslint/parser": "~5.26",
"eslint": "~8.16",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "~26.2",
"jest": "~28.1",
"prettier": "~2.6",
"rimraf": "~3.0",
"ts-jest": "~28.0",
"tsutils": "~3.21",
"typescript": "~4.7"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp dist release",
"build": "npx ncc build ./src/main.ts --out dist --source-map --watch",
"build:release": "npx ncc build ./src/main.ts --out release --minify",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --watch",
"test-serial": "jest --runInBand --watch",
"prettier": "prettier --config .prettierrc --write .",
"coverage": "jest --coverage"
},
"author": "Howard Kong <hkong@mitre.org>",
"license": "Apache-2.0",
"dependencies": {
"@commander-js/extra-typings": "^10.0.2",
"@vercel/ncc": "^0.36.1",
"adm-zip": "^0.5.10",
"axios": "^1.6.0",
"commander": "^10.0.0",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"dotenv": "^16.0.1",
"lodash": "^4.17.21",
"octokit": "^3.1.2",
"simple-git": "^3.19.1",
"tslib": "~2.4"
},
"volta": {
"node": "16.13.0"
}
}