package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "private": true,
  3. "name": "storage-node",
  4. "version": "1.0.0",
  5. "engines": {
  6. "node": ">=10.15.3",
  7. "yarn": "^1.15.2"
  8. },
  9. "homepage": "https://github.com/Joystream/joystream/",
  10. "bugs": {
  11. "url": "https://github.com/Joystream/joystream/issues"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/Joystream/joystream.git"
  16. },
  17. "license": "GPL-3.0",
  18. "contributors": [
  19. {
  20. "name": "Joystream",
  21. "url": "https://joystream.org"
  22. }
  23. ],
  24. "keywords": [
  25. "joystream",
  26. "storage",
  27. "node"
  28. ],
  29. "os": [
  30. "darwin",
  31. "linux"
  32. ],
  33. "scripts": {
  34. "test": "wsrun --serial test",
  35. "lint": "eslint --ignore-path .gitignore .",
  36. "checks": "yarn lint && prettier . --check",
  37. "format": "prettier ./ --write"
  38. },
  39. "devDependencies": {
  40. "eslint": "^5.16.0",
  41. "eslint-config-esnext": "^4.1.0",
  42. "eslint-config-prettier": "^6.11.0",
  43. "eslint-plugin-babel": "^5.3.1",
  44. "eslint-plugin-prettier": "^3.1.4",
  45. "prettier": "^2.0.5",
  46. "wsrun": "^3.6.5"
  47. }
  48. }