package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@joystream/storage-node-backend",
  3. "version": "0.1.0",
  4. "description": "Storage management code for Joystream Storage Node",
  5. "author": "Joystream",
  6. "homepage": "https://github.com/Joystream/joystream",
  7. "bugs": {
  8. "url": "https://github.com/Joystream/joystream/issues"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/Joystream/joystream.git"
  13. },
  14. "license": "GPL-3.0",
  15. "contributors": [
  16. {
  17. "name": "Joystream",
  18. "url": "https://joystream.org"
  19. }
  20. ],
  21. "keywords": [
  22. "joystream",
  23. "storage",
  24. "node",
  25. "storage"
  26. ],
  27. "os": [
  28. "darwin",
  29. "linux"
  30. ],
  31. "engines": {
  32. "node": ">=10.15.3"
  33. },
  34. "scripts": {
  35. "test": "mocha --exit 'test/**/*.js'",
  36. "lint": "eslint '**/*.js' --ignore-pattern 'test/**/*.js'"
  37. },
  38. "devDependencies": {
  39. "chai": "^4.2.0",
  40. "chai-as-promised": "^7.1.1",
  41. "eslint": "^5.13.0",
  42. "mocha": "^5.2.0"
  43. },
  44. "dependencies": {
  45. "bluebird": "^3.5.5",
  46. "file-type": "^11.0.0",
  47. "ipfs-http-client": "^32.0.1",
  48. "temp": "^0.9.0"
  49. }
  50. }