package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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-only",
  16. "contributors": [
  17. {
  18. "name": "Joystream",
  19. "url": "https://joystream.org"
  20. }
  21. ],
  22. "os": [
  23. "darwin",
  24. "linux"
  25. ],
  26. "engines": {
  27. "node": ">=14.0.0"
  28. },
  29. "volta": {
  30. "extends": "../../package.json"
  31. },
  32. "scripts": {
  33. "test": "mocha 'dist/test/**/*.js'",
  34. "lint": "eslint --ext .js,.ts . && tsc --noEmit --pretty",
  35. "build": "(rm tsconfig.tsbuildinfo || :) && tsc --build"
  36. },
  37. "bin": {
  38. "storage-cli": "./bin/cli.js"
  39. },
  40. "devDependencies": {
  41. "chai": "^4.2.0",
  42. "eslint": "^7.6.0",
  43. "mocha": "^5.2.0",
  44. "temp": "^0.9.0"
  45. },
  46. "dependencies": {
  47. "@joystream/storage-runtime-api": "^0.1.0",
  48. "@joystream/storage-utils": "^0.1.0",
  49. "@joystream/types": "^0.16.1",
  50. "axios": "^0.21.1",
  51. "chalk": "^2.4.2",
  52. "lodash": "^4.17.11",
  53. "meow": "^5.0.0",
  54. "ipfs-only-hash": "^1.0.2"
  55. }
  56. }