package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "yorkie",
  3. "version": "2.0.0",
  4. "description": "githooks management forked from husky",
  5. "engines": {
  6. "node": ">=4"
  7. },
  8. "scripts": {
  9. "test": "jest",
  10. "format": "prettier --single-quote --no-semi --write **/*.js",
  11. "install": "node bin/install.js",
  12. "uninstall": "node bin/uninstall.js"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/yyx990803/yorkie.git"
  17. },
  18. "keywords": [
  19. "git",
  20. "hook",
  21. "hooks",
  22. "pre-commit",
  23. "precommit",
  24. "post-commit",
  25. "postcommit",
  26. "pre-push",
  27. "prepush",
  28. "post-merge",
  29. "postmerge",
  30. "test"
  31. ],
  32. "authors": [
  33. "Typicode <typicode@gmail.com>",
  34. "Evan You"
  35. ],
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/yyx990803/yorkie/issues"
  39. },
  40. "homepage": "https://github.com/yyx990803/yorkie",
  41. "devDependencies": {
  42. "jest": "^20.0.4",
  43. "mkdirp": "^0.5.1",
  44. "prettier": "^1.4.4",
  45. "rimraf": "^2.6.1",
  46. "tempy": "^0.1.0"
  47. },
  48. "dependencies": {
  49. "execa": "^0.8.0",
  50. "is-ci": "^1.0.10",
  51. "normalize-path": "^1.0.0",
  52. "strip-indent": "^2.0.0"
  53. },
  54. "standard": {
  55. "env": {
  56. "jest": true
  57. }
  58. }
  59. }