UNPKG

1.48 kBJSONView Raw
1{
2 "name" : "ghooks",
3 "description" : "Simple git hooks",
4 "version" : "0.2.2",
5 "main" : "./lib/runner.js",
6 "keywords" : [ "git", "hooks", "hook" ],
7 "author" : "Guilherme Tramontina <guilherme.tramontina@gmail.com>",
8 "homepage" : "https://github.com/gtramontina/ghooks",
9 "license" : "unlicense",
10
11 "repository" : {
12 "type" : "git",
13 "url" : "https://github.com/gtramontina/ghooks.git"
14 },
15
16 "bugs" : {
17 "url" : "https://github.com/gtramontina/ghooks/issues"
18 },
19
20 "scripts" : {
21 "test" : "make test",
22 "install" : "./bin/install"
23 },
24
25 "dependencies" : {
26 "spawn-command" : "^0.0.2"
27 },
28
29 "devDependencies" : {
30 "mocha" : "^1.18.2",
31 "chai" : "^1.9.1",
32 "sinon" : "^1.9.1",
33 "sinon-chai" : "^2.5.0",
34 "proxyquire" : "^1.0.1",
35 "mock-fs" : "^2.2.0",
36 "mocha-cov-reporter" : "^1.1.0",
37 "blanket" : "^1.1.6",
38 "jshint-stylish" : "^1.0.0",
39 "jshint" : "^2.5.0",
40 "ghooks" : "*"
41 },
42
43 "config" : {
44 "blanket" : {
45 "pattern" : "ghooks/lib"
46 },
47 "ghooks" : {
48 "pre-commit" : "make test"
49 }
50 }
51}