package.json 2.7 KB

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