-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.73 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
{
"name": "prevent-forbidden-code",
"description": "prevents unintentional commiting of undesirable code to a project. ",
"version": "0.0.0-semantically-released",
"author": "Keith M. Pepin <keith.pepin@gmail.com>",
"bin": {
"prevent-forbidden-code": "index.js"
},
"bugs": {
"url": "https://github.com/pre-commit-prevent-forbidden-code/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "./index.js",
"commit-msg": "validate-commit-msg"
},
"prevent-forbidden-code": {
"exclude": [
"*.md"
]
}
},
"contributors": [
{
"name": "Haodin Li",
"email": "haodan.li.nharng@gmail.com"
}
],
"dependencies": {
"colors": "1.1.2",
"find-package-json": "1.0.0",
"minimatch": "3.0.3",
"simple-git": "1.65.0"
},
"devDependencies": {
"commitizen": "2.8.6",
"cz-conventional-changelog": "1.2.0",
"eslint": "3.14.1",
"eslint-config-google": "0.7.1",
"fixpack": "2.3.1",
"ghooks": "1.3.2",
"istanbul": "0.4.5",
"jasmine": "2.5.3",
"jasmine-reporters": "2.2.0",
"semantic-release": "6.3.2",
"simple-git": "1.65.0",
"validate-commit-msg": "2.11.2"
},
"homepage": "https://github.com/prevent-forbidden-code#readme",
"keywords": [
"code",
"forbidden",
"ghooks",
"stink"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/KeithPepin/prevent-forbidden-code"
},
"scripts": {
"commit": "git-cz",
"pretest": "eslint .",
"test": "echo \"Error: no test specified\" && exit 0",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
}
}