-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
73 lines (73 loc) · 1.74 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ban-sensitive-files",
"description": "Checks filenames to be committed against a library of filename rules to prevent sensitive files in Git",
"main": "src/ban.js",
"bin": {
"ban": "bin/ban.js",
"ban-sensitive-files": "bin/ban.js",
"sensitive-files": "bin/ban.js",
"ban-sensitive": "bin/ban.js",
"no-sensitive": "bin/ban.js",
"no-way": "bin/ban.js"
},
"version": "0.0.0-development",
"scripts": {
"test": "mocha src/*-spec.js",
"ban": "node bin/ban.js",
"issues": "git-issues",
"semantic-release": "semantic-release",
"lint": "standard --verbose --fix bin/*.js src/*.js",
"prepare": "husky install"
},
"standard": {
"parser": "babel-eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/ban-sensitive-files.git"
},
"keywords": [
"npm",
"git",
"github",
"security",
"sensitive",
"confidential",
"commit",
"prevent",
"secure",
"private",
"key"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"files": [
"git-deny-patterns.json",
"bin",
"src/*.js",
"!src/*-spec.js"
],
"bugs": {
"url": "https://github.com/bahmutov/ban-sensitive-files/issues"
},
"homepage": "https://github.com/bahmutov/ban-sensitive-files#readme",
"devDependencies": {
"babel-eslint": "10.1.0",
"git-issues": "1.3.1",
"husky": "9.1.6",
"mocha": "10.8.2",
"semantic-release": "23.1.1",
"standard": "17.0.0"
},
"dependencies": {
"bluebird": "3.7.2",
"check-more-types": "2.24.0",
"debug": "4.3.7",
"ggit": "2.4.12",
"lazy-ass": "1.6.0",
"pluralize": "8.0.0",
"ramda": "0.30.1",
"update-notifier": "5.1.0"
},
"types": "ban.d.ts"
}