-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 890 Bytes
/
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
{
"name": "ssl-check-cli",
"description": "A CLI based on the great ssl-checker module",
"version": "1.0.4",
"author": "Emanuel Bennici @l0nax",
"bin": {
"ssl-check": "./bin/run"
},
"bugs": "https://github.com/l0nax/ssl-check-cli/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"ssl-checker": "^2.0.7"
},
"devDependencies": {
"@oclif/dev-cli": "^1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src"
],
"homepage": "https://github.com/l0nax/ssl-check-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"bin": "ssl-check"
},
"repository": "l0nax/ssl-check-cli",
"scripts": {
"prepack": "oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
}
}