package.json 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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": "^0.11.0",
  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. "ajv": "^6.11.0"
  26. },
  27. "devDependencies": {
  28. "@oclif/dev-cli": "^1.22.2",
  29. "@oclif/test": "^1.2.5",
  30. "@polkadot/ts": "^0.1.56",
  31. "@types/chai": "^4.2.11",
  32. "@types/mocha": "^5.2.7",
  33. "@types/node": "^10.17.18",
  34. "chai": "^4.2.0",
  35. "eslint": "^5.16.0",
  36. "eslint-config-oclif": "^3.1.0",
  37. "eslint-config-oclif-typescript": "^0.1.0",
  38. "globby": "^10.0.2",
  39. "mocha": "^5.2.0",
  40. "nyc": "^14.1.1",
  41. "ts-node": "^8.8.2",
  42. "typescript": "^3.8.3"
  43. },
  44. "engines": {
  45. "node": ">=8.0.0"
  46. },
  47. "files": [
  48. "/bin",
  49. "/lib",
  50. "/npm-shrinkwrap.json",
  51. "/oclif.manifest.json"
  52. ],
  53. "homepage": "https://github.com/Joystream/substrate-runtime-joystream/blob/master/cli",
  54. "keywords": [
  55. "oclif"
  56. ],
  57. "license": "MIT",
  58. "main": "lib/index.js",
  59. "oclif": {
  60. "repositoryPrefix": "<%- repo %>/blob/master/cli/<%- commandPath %>",
  61. "commands": "./lib/commands",
  62. "bin": "joystream-cli",
  63. "plugins": [
  64. "@oclif/plugin-help"
  65. ],
  66. "topics": {
  67. "council": {
  68. "description": "Council-related information and activities like voting, becoming part of the council etc."
  69. },
  70. "account": {
  71. "description": "Accounts management - create, import or switch currently used account"
  72. },
  73. "api": {
  74. "description": "Inspect the substrate node api, perform lower-level api calls or change the current api provider uri"
  75. },
  76. "working-groups": {
  77. "description": "Working group lead and worker actions"
  78. }
  79. }
  80. },
  81. "repository": {
  82. "type": "git",
  83. "url": "https://github.com/Joystream/substrate-runtime-joystream",
  84. "directory": "cli"
  85. },
  86. "scripts": {
  87. "postpack": "rm -f oclif.manifest.json",
  88. "posttest": "yarn lint",
  89. "prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
  90. "test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
  91. "build": "tsc --build tsconfig.json",
  92. "version": "oclif-dev readme && git add README.md",
  93. "lint": "eslint ./src/ --quiet --ext .ts",
  94. "checks": "yarn lint && tsc --noEmit --pretty && prettier ./ --check",
  95. "format": "prettier ./ --write"
  96. },
  97. "types": "lib/index.d.ts"
  98. }