package.json 1.1 KB

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