package.json 436 B

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