Browse Source

Merge pull request #420 from pelias/precommit-hook-3

Upgrade to precommit-hook 3.0.0
pull/421/head
Julian Simioni 9 years ago
parent
commit
90ccef168d
  1. 15
      package.json

15
package.json

@ -13,7 +13,9 @@
"ciao": "node node_modules/ciao/bin/ciao -c test/ciao.json test/ciao", "ciao": "node node_modules/ciao/bin/ciao -c test/ciao.json test/ciao",
"coverage": "node_modules/.bin/istanbul cover test/unit/run.js", "coverage": "node_modules/.bin/istanbul cover test/unit/run.js",
"audit": "npm shrinkwrap; node node_modules/nsp/bin/nspCLI.js audit-shrinkwrap; rm npm-shrinkwrap.json;", "audit": "npm shrinkwrap; node node_modules/nsp/bin/nspCLI.js audit-shrinkwrap; rm npm-shrinkwrap.json;",
"docs": "./bin/generate-docs" "docs": "./bin/generate-docs",
"lint": "jshint .",
"validate": "npm ls"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@ -62,9 +64,14 @@
"istanbul": "^0.3.13", "istanbul": "^0.3.13",
"jshint": "^2.5.6", "jshint": "^2.5.6",
"nsp": "^0.3.0", "nsp": "^0.3.0",
"precommit-hook": "^1.0.7", "precommit-hook": "3.0.0",
"proxyquire": "^1.4.0", "proxyquire": "^1.4.0",
"tap-dot": "1.0.4", "tap-dot": "1.0.4",
"tape": "^2.13.4" "tape": "^2.13.4"
} },
} "pre-commit": [
"lint",
"validate",
"test"
]
}
Loading…
Cancel
Save