forked from ericvicenti/ssh-keygen
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.25 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
55
{
"name": "ssh-keygen-lite",
"version": "1.0.0",
"description": "Generates SSH key-pairs",
"main": "src/ssh-keygen",
"types": "index.d.ts",
"type": "commonjs",
"author": {
"name": "Eric Vicenti",
"url": "http://github.com/ericvicenti"
},
"maintainers": [
"Micael Levi Lima Cavalcante (https://micalevisk.github.io)"
],
"homepage": "http://github.com/micalevisk/ssh-keygen-lite",
"repository": {
"type": "git",
"url": "git://github.com/micalevisk/ssh-keygen.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"acess": "public"
},
"engines": {
"node": ">= 12.x"
},
"keywords": [
"ssh",
"key",
"pair",
"private",
"public"
],
"bugs": {
"url": "http://github.com/micalevisk/ssh-keygen-lite/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/micalevisk/ssh-keygen-lite/blob/master/LICENSE.md"
}
],
"scripts": {
"test": "node test",
"format:fix": "prettier --write .",
"release:check": "semantic-release --dry-run",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^17.0.21",
"prettier": "^2.6.0",
"semantic-release": "^19.0.2"
}
}