package.json 1.0 KB

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