package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "name": "@joystream/cli",
  3. "description": "Command Line Interface for Joystream community and governance activities",
  4. "version": "0.1.0",
  5. "author": "Leszek Wiesner",
  6. "bin": {
  7. "joystream-cli": "./bin/run"
  8. },
  9. "bugs": "https://github.com/Joystream/joystream/issues",
  10. "dependencies": {
  11. "@joystream/types": "^0.12.0",
  12. "@oclif/command": "^1.5.19",
  13. "@oclif/config": "^1.14.0",
  14. "@oclif/plugin-autocomplete": "^0.2.0",
  15. "@oclif/plugin-help": "^2.2.3",
  16. "@oclif/plugin-not-found": "^1.2.4",
  17. "@oclif/plugin-warn-if-update-available": "^1.7.0",
  18. "@polkadot/api": "^0.96.1",
  19. "@types/inquirer": "^6.5.0",
  20. "@types/proper-lockfile": "^4.1.1",
  21. "@types/slug": "^0.9.1",
  22. "ajv": "^6.11.0",
  23. "cli-ux": "^5.4.5",
  24. "inquirer": "^7.1.0",
  25. "moment": "^2.24.0",
  26. "proper-lockfile": "^4.1.1",
  27. "slug": "^2.1.1",
  28. "tslib": "^1.11.1"
  29. },
  30. "devDependencies": {
  31. "@oclif/dev-cli": "^1.22.2",
  32. "@oclif/test": "^1.2.5",
  33. "@polkadot/ts": "^0.1.56",
  34. "@types/chai": "^4.2.11",
  35. "@types/mocha": "^5.2.7",
  36. "@types/node": "^10.17.18",
  37. "chai": "^4.2.0",
  38. "eslint": "^5.16.0",
  39. "eslint-config-oclif": "^3.1.0",
  40. "eslint-config-oclif-typescript": "^0.1.0",
  41. "globby": "^10.0.2",
  42. "mocha": "^5.2.0",
  43. "nyc": "^14.1.1",
  44. "ts-node": "^8.8.2",
  45. "typescript": "^3.8.3"
  46. },
  47. "engines": {
  48. "node": ">=12.18.0",
  49. "yarn": "^1.22.0"
  50. },
  51. "files": [
  52. "/bin",
  53. "/lib",
  54. "/npm-shrinkwrap.json",
  55. "/oclif.manifest.json"
  56. ],
  57. "homepage": "https://github.com/Joystream/joystream/blob/master/cli",
  58. "keywords": [
  59. "oclif"
  60. ],
  61. "license": "MIT",
  62. "main": "lib/index.js",
  63. "oclif": {
  64. "repositoryPrefix": "<%- repo %>/blob/master/cli/<%- commandPath %>",
  65. "commands": "./lib/commands",
  66. "bin": "joystream-cli",
  67. "plugins": [
  68. "@oclif/plugin-help",
  69. "@oclif/plugin-autocomplete",
  70. "@oclif/plugin-not-found",
  71. "@oclif/plugin-warn-if-update-available"
  72. ],
  73. "topics": {
  74. "council": {
  75. "description": "Council-related information and activities like voting, becoming part of the council etc."
  76. },
  77. "account": {
  78. "description": "Accounts management - create, import or switch currently used account"
  79. },
  80. "api": {
  81. "description": "Inspect the substrate node api, perform lower-level api calls or change the current api provider uri"
  82. },
  83. "working-groups": {
  84. "description": "Working group lead and worker actions"
  85. }
  86. }
  87. },
  88. "repository": {
  89. "type": "git",
  90. "url": "https://github.com/Joystream/joystream",
  91. "directory": "cli"
  92. },
  93. "scripts": {
  94. "postpack": "rm -f oclif.manifest.json",
  95. "posttest": "yarn lint",
  96. "prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
  97. "test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
  98. "build": "tsc --build tsconfig.json",
  99. "version": "oclif-dev readme && git add README.md",
  100. "lint": "eslint ./ --quiet --ext .ts",
  101. "checks": "yarn lint && tsc --noEmit --pretty && prettier ./ --check",
  102. "format": "prettier ./ --write"
  103. },
  104. "types": "lib/index.d.ts"
  105. }