-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.21 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": "checksslcertificate",
"version": "1.0.5",
"author": {
"name": "Patrick Weingärtner",
"email": "[email protected]"
},
"homepage": "https://github.com/Lisiadito/checkSslCertificate",
"repository": {
"type": "git",
"url": "https://github.com/Lisiadito/checkSslCertificate.git"
},
"engines": {
"node": "^10.15.0",
"yarn": "^1.15.2"
},
"bin": {
"checksslcertificate": "./dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "mocha",
"pretty": "prettier --write src/index.ts test/test.js",
"prepare": "yarn build",
"prepublishOnly": "yarn build && yarn test && yarn pretty",
"preversion": "yarn pretty"
},
"dependencies": {
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/node": "^13.9.2",
"@types/yargs": "^15.0.4",
"chai": "^4.2.0",
"mocha": "7.1.1",
"prettier": "1.19.1",
"typescript": "^3.5.3"
},
"keywords": [
"ssl",
"typescript",
"cli",
"check",
"tls",
"node"
],
"description": "A tool to check if the ssl certificate of given hostname is valid"
}