package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@joystream/cli",
  3. "version": "0.1.0",
  4. "description": "Joystream Runtime & Colossus CLI",
  5. "author": "Joystream",
  6. "homepage": "https://github.com/Joystream/storage-node-joystream",
  7. "bugs": {
  8. "url": "https://github.com/Joystream/storage-node-joystream/issues"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/Joystream/storage-node-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. "cli"
  24. ],
  25. "os": [
  26. "darwin",
  27. "linux"
  28. ],
  29. "engines": {
  30. "node": ">=10.15.3"
  31. },
  32. "scripts": {
  33. "test": "mocha 'test/**/*.js'",
  34. "lint": "eslint 'paths/**/*.js' 'lib/**/*.js'"
  35. },
  36. "bin": {
  37. "joystream": "bin/cli.js"
  38. },
  39. "devDependencies": {
  40. "chai": "^4.2.0",
  41. "eslint": "^5.13.0",
  42. "mocha": "^5.2.0",
  43. "temp": "^0.9.0"
  44. },
  45. "dependencies": {
  46. "@joystream/runtime-api": "^0.1.0",
  47. "chalk": "^2.4.2",
  48. "lodash": "^4.17.11",
  49. "meow": "^5.0.0",
  50. "request": "^2.88.0"
  51. }
  52. }