-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.02 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.02 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ssh-agent-secrets",
"version": "0.3.2",
"description": "Encrypt and decrypt secrets using an SSH agent",
"keywords": [
"ssh",
"ssh-agent",
"encryption",
"ssh-key",
"cryptography",
"cli"
],
"homepage": "https://github.com/ddebin/ssh-agent-secrets",
"bugs": {
"url": "https://github.com/ddebin/ssh-agent-secrets/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddebin/ssh-agent-secrets.git"
},
"license": "MIT",
"author": "Damien Debin <damien.debin@gmail.com>",
"type": "module",
"main": "dist/src/lib/index.js",
"types": "dist/src/lib/index.d.ts",
"bin": {
"ssh-crypt": "dist/src/cli.js"
},
"files": [
"dist/src/**/*"
],
"scripts": {
"build": "npm run clean && tsc -b",
"clean": "del-cli ./dist",
"coverage": "nyc --reporter=lcovonly --reporter=text npm test",
"eslint:check": "eslint .",
"eslint:fix": "eslint . --fix",
"fix": "npm run eslint:fix && npm run prettier:fix",
"lint": "npm run typecheck && npm run eslint:check && npm run prettier:check",
"prepublishOnly": "npm run build && npm run lint",
"prettier:check": "prettier --check . --config .prettierrc",
"prettier:fix": "prettier --write . --config .prettierrc",
"test": "mocha",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@commander-js/extra-typings": "^13 || ^14",
"commander": "^13 || ^14"
},
"devDependencies": {
"@eslint/js": "^10",
"@tsconfig/node-ts": "^23.6.4",
"@tsconfig/node18": "^18",
"@types/chai": "^5",
"@types/chai-as-promised": "^8",
"@types/mocha": "^10",
"@types/node": "^18",
"chai": "^6",
"chai-as-promised": "^8",
"del-cli": "^6",
"eslint": "^10",
"eslint-config-prettier": "^10",
"globals": "^17",
"mocha": "^11",
"nyc": "^18",
"prettier": "^3",
"prettier-plugin-packagejson": "^3",
"ts-node": "^10",
"tsx": "^4",
"typescript": "^5.8",
"typescript-eslint": "^8"
},
"engines": {
"node": ">=18"
}
}