package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "private": true,
  3. "name": "storage-node",
  4. "version": "1.0.0",
  5. "engines": {
  6. "node": ">=10.15.3",
  7. "yarn": "^1.15.2"
  8. },
  9. "homepage": "https://github.com/Joystream/joystream/",
  10. "bugs": {
  11. "url": "https://github.com/Joystream/joystream/issues"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/Joystream/joystream.git"
  16. },
  17. "license": "GPL-3.0",
  18. "contributors": [
  19. {
  20. "name": "Joystream",
  21. "url": "https://joystream.org"
  22. }
  23. ],
  24. "keywords": [
  25. "joystream",
  26. "storage",
  27. "node"
  28. ],
  29. "os": [
  30. "darwin",
  31. "linux"
  32. ],
  33. "scripts": {
  34. "test": "wsrun --serial test",
  35. "lint": "eslint --ignore-path .gitignore .",
  36. "build": "yarn workspace @joystream/storage-cli run build"
  37. },
  38. "devDependencies": {
  39. "@types/chai": "^4.2.11",
  40. "@types/mocha": "^7.0.2",
  41. "eslint": "^5.16.0",
  42. "eslint-config-esnext": "^4.1.0",
  43. "eslint-config-prettier": "^6.11.0",
  44. "eslint-plugin-babel": "^5.3.1",
  45. "eslint-plugin-prettier": "^3.1.4",
  46. "prettier": "^2.0.5",
  47. "typescript": "^3.9.6",
  48. "wsrun": "^3.6.5"
  49. }
  50. }