package.json 369 B

1234567891011121314151617181920
  1. {
  2. "private": true,
  3. "name": "joystream",
  4. "license": "GPL-3.0-only",
  5. "scripts": {
  6. "test": "yarn && yarn workspaces run test"
  7. },
  8. "workspaces": [
  9. "tests/network-tests"
  10. ],
  11. "devDependencies": {
  12. "husky": "^4.2.5"
  13. },
  14. "husky": {
  15. "hooks": {
  16. "pre-commit": "devops/git-hooks/pre-commit",
  17. "pre-push": "devops/git-hooks/pre-push"
  18. }
  19. }
  20. }