package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@joystream/service-discovery",
  3. "version": "0.1.0",
  4. "description": "Service Discovery - 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. ],
  26. "os": [
  27. "darwin",
  28. "linux"
  29. ],
  30. "engines": {
  31. "node": ">=10.15.3"
  32. },
  33. "main": "./index.js",
  34. "scripts": {
  35. "test": "mocha 'test/**/*.js'",
  36. "lint": "eslint 'paths/**/*.js' 'lib/**/*.js'"
  37. },
  38. "devDependencies": {
  39. "chai": "^4.2.0",
  40. "eslint": "^5.13.0",
  41. "mocha": "^5.2.0",
  42. "supertest": "^3.4.2",
  43. "temp": "^0.9.0"
  44. },
  45. "dependencies": {
  46. "@joystream/storage-runtime-api": "^0.1.0",
  47. "@joystream/storage-utils": "^0.1.0",
  48. "async-lock": "^1.2.0",
  49. "axios": "^0.18.0",
  50. "chalk": "^2.4.2",
  51. "configstore": "^4.0.0",
  52. "figlet": "^1.2.1",
  53. "ipfs-http-client": "^32.0.1",
  54. "js-yaml": "^3.13.1",
  55. "meow": "^5.0.0",
  56. "multer": "^1.4.1",
  57. "si-prefix": "^0.2.0"
  58. }
  59. }