package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@joystream/storage-runtime-api",
  3. "private": true,
  4. "version": "0.1.0",
  5. "description": "Runtime API abstraction for Joystream Storage Node",
  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. "keywords": [
  23. "joystream",
  24. "storage",
  25. "node",
  26. "runtime"
  27. ],
  28. "os": [
  29. "darwin",
  30. "linux"
  31. ],
  32. "engines": {
  33. "node": ">=14.0.0"
  34. },
  35. "volta": {
  36. "extends": "../../package.json"
  37. },
  38. "scripts": {
  39. "test": "mocha 'test/**/*.js' --exit",
  40. "lint": "eslint '**/*.js' --ignore-pattern 'test/**/*.js'"
  41. },
  42. "devDependencies": {
  43. "chai": "^4.2.0",
  44. "eslint": "^7.6.0",
  45. "mocha": "^5.2.0",
  46. "sinon": "^7.3.2",
  47. "sinon-chai": "^3.3.0",
  48. "temp": "^0.9.0"
  49. },
  50. "dependencies": {
  51. "@joystream/storage-utils": "^0.1.0",
  52. "@joystream/types": "^0.16.1",
  53. "@polkadot/api": "4.2.1",
  54. "async-lock": "^1.2.0",
  55. "lodash": "^4.17.11",
  56. "password-prompt": "^1.1.2"
  57. }
  58. }