-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.26 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
{
"name": "helpsheet-cli",
"version": "1.2.1",
"description": "Modular offline terminal help system with Git, NPM, Docker commands and extensible architecture for more developer tools",
"main": "cli.js",
"bin": {
"helpsheet": "cli.js"
},
"scripts": {
"start": "node cli.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm audit --audit-level moderate"
},
"keywords": [
"helpsheet",
"offline-help",
"terminal-help",
"git",
"cli",
"cheatsheet",
"developer-tools",
"git-commands",
"interactive",
"terminal",
"npm-help",
"github-cli",
"docker-help",
"command-reference"
],
"author": "Samuel Urah Yahaya <urahsamuel0202@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Sammy949/cheats-cli.git"
},
"homepage": "https://github.com/Sammy949/cheats-cli#readme",
"bugs": {
"url": "https://github.com/Sammy949/cheats-cli/issues"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"boxen": "^6.2.1",
"chalk": "^4.1.2",
"clipboardy": "^4.0.0",
"figlet": "^1.8.2",
"inquirer": "^8.2.6"
},
"files": [
"cli.js",
"commands/",
"README.md",
"LICENSE"
]
}