forked from carlos8f/ssh-keygen2
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 965 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": "@andrewwlane/ssh-keygen2",
"type": "module",
"version": "2.0.0",
"description": "Automate ssh-keygen command for generating RSA keypairs",
"main": "index.js",
"devDependencies": {
"c8": "10.1.3",
"chai": "5.1.2",
"eslint": "9.19.0",
"mocha": "11.1.0",
"prettier": "3.4.2",
"sinon": "19.0.2"
},
"scripts": {
"lint": "npx eslint **/*.js",
"test": "mocha --timeout 10000",
"coverage": "c8 --reporter=lcovonly mocha",
"format": "prettier --write **/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/AndrewLane/ssh-keygen2.git"
},
"homepage": "https://github.com/AndrewLane/ssh-keygen2",
"keywords": [
"rsa",
"encryption",
"crypto",
"keypair",
"ssh",
"pubkey",
"randomart",
"pem"
],
"author": "Andrew Lane <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndrewLane/ssh-keygen2/issues"
}
}