-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.81 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
74
75
{
"name": "git-lint",
"description": "A git commit message linter",
"version": "0.1.0",
"year": "2016",
"homepage": "https://github.com/BenjaminVanRyseghem/git-lint",
"author": {
"name": "Benjamin Van Ryseghem",
"email": "[email protected]",
"url": "http://benjamin.vanryseghem.com"
},
"contributors": [
{
"name": "Benjamin Van Ryseghem",
"email": "[email protected]",
"url": "https://benjamin.vanryseghem.com"
}
],
"license": "GPL-3.0",
"licenseUrl": "http://www.gnu.org/licenses/gpl-3.0.en.html",
"repository": {
"type": "git",
"url": "git://github.com/BenjaminVanRyseghem/git-lint.git"
},
"bugs": {
"url": "https://github.com/BenjaminVanRyseghem/git-lint/issues"
},
"licenses": [
{
"type": "GPL-3.0",
"url": "https://github.com/BenjaminVanRyseghem/git-lint/blob/master/LICENSE"
}
],
"keywords": [
"cli",
"command line",
"git",
"linter"
],
"preferGlobal": true,
"bin": {
"gitlint": "./bin/gitlint"
},
"main": "lib/gitlint.js",
"engines": {
"node": ">=0.8"
},
"scripts": {
"test": "gulp"
},
"dependencies": {
"command-line-args": "^2.1.6",
"git-lint-recommended": "benjaminvanryseghem/git-lint-recommended",
"is-my-json-valid": "^2.13.1",
"minimist": "~0.0.8",
"mustache": "^2.2.1",
"nodegit": "^0.18.0",
"verbalize": "~0.1.1"
},
"devDependencies": {
"del": "^2.2.0",
"eslint-plugin-jasmine": "^2.2.0",
"gulp": "^3.9.1",
"gulp-codacy": "^1.0.0",
"gulp-eslint": "^2.0.0",
"gulp-flatmap": "^1.0.0",
"gulp-istanbul": "^0.10.3",
"gulp-jasmine": "^2.3.0",
"gulp-load-plugins": "^1.2.0",
"gulp-strip-code": "^0.1.3",
"jasmine": "^2.4.1",
"jasmine-reporters": "^2.1.1",
"rewire": "^2.5.2"
}
}