-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.16 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.16 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
{
"name": "secure-commit",
"version": "1.0.0",
"description": "A CLI tool to prevent secrets from being committed to Git repositories",
"main": "lib/index.js",
"bin": {
"secure-commit": "bin/cli.js"
},
"type": "module",
"scripts": {
"start": "node bin/cli.js",
"test": "jest",
"lint": "eslint lib/ bin/ --ext .js",
"scan": "node bin/cli.js scan",
"install-hook": "node bin/cli.js install",
"dev": "node bin/cli.js"
},
"keywords": [
"git",
"security",
"secrets",
"pre-commit",
"cli",
"api-keys",
"credentials",
"developer-tools"
],
"author": "Samuel Umoren",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"commander": "^11.0.0",
"chalk": "^4.1.2",
"fs-extra": "^11.1.1"
},
"devDependencies": {
"jest": "^29.5.0",
"eslint": "^8.44.0"
},
"files": [
"bin/",
"lib/",
"templates/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Umoren/secure-commit.git"
},
"bugs": {
"url": "https://github.com/Umoren/secure-commit/issues"
},
"homepage": "https://github.com/Umoren/secure-commit#readme"
}