package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@joystream/storage-cli",
  3. "version": "0.1.0",
  4. "description": "Joystream tool for uploading and downloading files to the network",
  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. "os": [
  22. "darwin",
  23. "linux"
  24. ],
  25. "engines": {
  26. "node": ">=10.15.3"
  27. },
  28. "scripts": {
  29. "test": "mocha 'test/**/*.js'",
  30. "lint": "eslint 'paths/**/*.js' 'lib/**/*.js'"
  31. },
  32. "bin": {
  33. "joystream": "bin/cli.js"
  34. },
  35. "devDependencies": {
  36. "chai": "^4.2.0",
  37. "eslint": "^5.13.0",
  38. "mocha": "^5.2.0",
  39. "temp": "^0.9.0"
  40. },
  41. "dependencies": {
  42. "@joystream/runtime-api": "^0.1.0",
  43. "chalk": "^2.4.2",
  44. "lodash": "^4.17.11",
  45. "meow": "^5.0.0",
  46. "request": "^2.88.0"
  47. }
  48. }