Browse Source

Fixing repository information in package.json

Leszek Wiesner 4 years ago
parent
commit
ac376d2311
1 changed files with 8 additions and 3 deletions
  1. 8 3
      cli/package.json

+ 8 - 3
cli/package.json

@@ -6,7 +6,7 @@
   "bin": {
     "joystream-cli": "./bin/run"
   },
-  "bugs": "https://github.com/Joystream/cli/issues",
+  "bugs": "https://github.com/Joystream/substrate-runtime-joystream/issues",
   "dependencies": {
     "@joystream/types": "^0.6.0",
     "@oclif/command": "^1.5.19",
@@ -47,13 +47,14 @@
     "/npm-shrinkwrap.json",
     "/oclif.manifest.json"
   ],
-  "homepage": "https://github.com/Joystream/cli",
+  "homepage": "https://github.com/Joystream/substrate-runtime-joystream/blob/master/cli",
   "keywords": [
     "oclif"
   ],
   "license": "MIT",
   "main": "lib/index.js",
   "oclif": {
+    "repositoryPrefix": "<%- repo %>/blob/master/cli/<%- commandPath %>",
     "commands": "./lib/commands",
     "bin": "joystream-cli",
     "plugins": [
@@ -68,7 +69,11 @@
       }
     }
   },
-  "repository": "Joystream/cli",
+  "repository": {
+    "type" : "git",
+    "url" : "https://github.com/Joystream/substrate-runtime-joystream",
+    "directory": "cli"
+  },
   "scripts": {
     "postpack": "rm -f oclif.manifest.json",
     "posttest": "eslint . --ext .ts --config .eslintrc",