package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@joystream/storage-utils",
  3. "private": true,
  4. "version": "0.1.0",
  5. "description": "Utility code for Joystream Storage Node",
  6. "author": "Joystream",
  7. "homepage": "https://github.com/Joystream/joystream",
  8. "bugs": {
  9. "url": "https://github.com/Joystream/joystream/issues"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/Joystream/joystream.git"
  14. },
  15. "license": "GPL-3.0-only",
  16. "contributors": [
  17. {
  18. "name": "Joystream",
  19. "url": "https://joystream.org"
  20. }
  21. ],
  22. "keywords": [
  23. "joystream",
  24. "storage",
  25. "node",
  26. "utility"
  27. ],
  28. "os": [
  29. "darwin",
  30. "linux"
  31. ],
  32. "engines": {
  33. "node": ">=14.0.0"
  34. },
  35. "volta": {
  36. "extends": "../../package.json"
  37. },
  38. "scripts": {
  39. "test": "mocha 'test/**/*.js'",
  40. "lint": "eslint '**/*.js' --ignore-pattern 'test/**/*.js'"
  41. },
  42. "devDependencies": {
  43. "chai": "^4.2.0",
  44. "eslint": "^7.6.0",
  45. "mocha": "^5.2.0",
  46. "temp": "^0.9.0"
  47. },
  48. "dependencies": {
  49. "stream-buffers": "^3.0.2",
  50. "uuid": "^3.3.2"
  51. }
  52. }