-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.15 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.15 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
{
"name": "northcheck",
"version": "0.0.3",
"description": "CLI tool to check links and files for potential threats using NordVPN APIs.",
"main": "index.js",
"bin": {
"northcheck": "./index.js",
"nc": "./index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"cli",
"nordvpn",
"vpn",
"link-checker",
"network",
"security",
"api",
"threat-detection",
"file-checker",
"hash-checker",
"sha256"
],
"author": {
"name": "devbyben",
"email": "contact@devbyben.fr",
"url": "https://github.com/benoitpetit"
},
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/benoitpetit/northcheck.git"
},
"homepage": "https://github.com/benoitpetit/northcheck#readme",
"bugs": {
"url": "https://github.com/benoitpetit/northcheck/issues"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"index.js",
"scripts/",
"README.md",
"LICENSE"
],
"dependencies": {
"axios": "^1.10.0",
"commander": "^14.0.0"
}
}