-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "check-qix-vulnerabilities",
"version": "1.0.14",
"description": "A CLI tool to check and update vulnerable npm dependencies that are published to npm by qix.",
"license": "ISC",
"author": "Adarsh R. Kumar <adarshrkumar@aol.com> (https://adarshrkumar.dev)",
"type": "commonjs",
"bin": {
"check-qix-vulnerabilities": "index.js"
},
"main": "index.js",
"keywords": [
"vulnerability",
"security",
"npm",
"dependencies",
"cli",
"checker"
],
"repository": {
"type": "git",
"url": "https://github.com/adarshrkumar/qix-vulnerability-checker.git"
},
"homepage": "https://github.com/adarshrkumar/qix-vulnerability-checker#readme",
"bugs": {
"url": "https://github.com/adarshrkumar/qix-vulnerability-checker/issues"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm version patch --no-git-tag-version"
},
"dependencies": {
"chalk": "^5.6.2",
"yargs": "^18.0.0"
},
"files": [
"index.js",
"README.md"
]
}