package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "husky",
  3. "version": "0.13.4",
  4. "description": "Prevents bad commit or push (git hooks, pre-commit/precommit, pre-push/prepush, post-merge/postmerge and all that stuff...)",
  5. "main": "./src/index.js",
  6. "scripts": {
  7. "test": "mocha && standard",
  8. "precommit": "npm test",
  9. "prepublish": "pkg-ok",
  10. "install": "node ./bin/install.js",
  11. "uninstall": "node ./bin/uninstall.js"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/typicode/husky.git"
  16. },
  17. "keywords": [
  18. "git",
  19. "hook",
  20. "hooks",
  21. "pre-commit",
  22. "precommit",
  23. "post-commit",
  24. "postcommit",
  25. "pre-push",
  26. "prepush",
  27. "post-merge",
  28. "postmerge",
  29. "test"
  30. ],
  31. "author": "Typicode <typicode@gmail.com>",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/typicode/husky/issues"
  35. },
  36. "homepage": "https://github.com/typicode/husky",
  37. "devDependencies": {
  38. "expect": "^1.20.2",
  39. "mocha": "^3.2.0",
  40. "mock-fs": "^3.12.1",
  41. "pkg-ok": "^1.0.1",
  42. "rimraf": "^2.2.8",
  43. "standard": "^8.6.0"
  44. },
  45. "dependencies": {
  46. "chalk": "^1.1.3",
  47. "find-parent-dir": "^0.3.0",
  48. "is-ci": "^1.0.9",
  49. "normalize-path": "^1.0.0"
  50. },
  51. "standard": {
  52. "env": {
  53. "mocha": true
  54. }
  55. }
  56. }