Skip to content

Commit

Permalink
Install some dependencies and npm reformatted this to be sane :-)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent C. Dodds committed Nov 11, 2015
1 parent 62ef220 commit 08a2d5d
Showing 1 changed file with 42 additions and 41 deletions.
83 changes: 42 additions & 41 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,52 @@
{
"name" : "ghooks",
"description" : "Simple git hooks",
"version" : "0.3.2",
"main" : "./lib/runner.js",
"keywords" : [ "git", "hooks", "hook" ],
"author" : "Guilherme Tramontina <guilherme.tramontina@gmail.com>",
"homepage" : "https://github.com/gtramontina/ghooks",
"license" : "unlicense",

"repository" : {
"type" : "git",
"url" : "https://github.com/gtramontina/ghooks.git"
"name": "ghooks",
"description": "Simple git hooks",
"version": "0.3.2",
"main": "./lib/runner.js",
"keywords": [
"git",
"hooks",
"hook"
],
"author": "Guilherme Tramontina <guilherme.tramontina@gmail.com>",
"homepage": "https://github.com/gtramontina/ghooks",
"license": "unlicense",
"repository": {
"type": "git",
"url": "https://github.com/gtramontina/ghooks.git"
},

"bugs" : {
"url" : "https://github.com/gtramontina/ghooks/issues"
"bugs": {
"url": "https://github.com/gtramontina/ghooks/issues"
},

"scripts" : {
"test" : "make test",
"install" : "node ./bin/install"
"scripts": {
"test": "make test",
"install": "node ./bin/install"
},

"dependencies" : {
"spawn-command" : "^0.0.2"
"dependencies": {
"lodash.clone": "3.0.3",
"manage-path": "2.0.0",
"spawn-command": "^0.0.2"
},

"devDependencies" : {
"mocha" : "^2.1.0",
"chai" : "^3.0.0",
"sinon" : "^1.12.2",
"sinon-chai" : "^2.7.0",
"proxyquire" : "^1.3.1",
"mock-fs" : "^3.0.0",
"mocha-cov-reporter" : "^1.1.3",
"blanket" : "^1.1.6",
"jshint-stylish" : "^2.0.0",
"jshint" : "^2.6.0",
"ghooks" : "*"
"devDependencies": {
"blanket": "^1.1.6",
"chai": "^3.0.0",
"chai-string": "1.1.3",
"ghooks": "*",
"jshint": "^2.6.0",
"jshint-stylish": "^2.0.0",
"mocha": "^2.1.0",
"mocha-cov-reporter": "^1.1.3",
"mock-fs": "^3.0.0",
"proxyquire": "^1.3.1",
"sinon": "^1.12.2",
"sinon-chai": "^2.7.0"
},

"config" : {
"blanket" : {
"pattern" : "ghooks/lib"
"config": {
"blanket": {
"pattern": "ghooks/lib"
},
"ghooks" : {
"pre-commit" : "make test"
"ghooks": {
"pre-commit": "foo && make test"
}
}
}

0 comments on commit 08a2d5d

Please sign in to comment.