whyinstall 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +3 -3
package/dist/cli.js CHANGED
@@ -14,7 +14,7 @@ const program = new commander_1.Command();
14
14
  program
15
15
  .name('whyinstall')
16
16
  .description('Find why a dependency exists in your JS/TS project')
17
- .version('0.3.2')
17
+ .version('0.3.3')
18
18
  .argument('<package-name>', 'Package name to analyze')
19
19
  .option('-j, --json', 'Output as JSON')
20
20
  .option('-c, --cwd <path>', 'Working directory', process.cwd())
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "whyinstall",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "CLI tool to find why a dependency exists in your JS/TS project",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -23,9 +23,9 @@
23
23
  "license": "MIT",
24
24
  "repository": {
25
25
  "type": "git",
26
- "url": "https://github.com/saumyakushwah/whyinstall.git"
26
+ "url": "git+https://github.com/saumyakushwah/whyinstall.git"
27
27
  },
28
- "homepage": "https://saumyakushwah.github.io/whyinstall",
28
+ "homepage": "https://whyinstall.saumyakushwah.com/",
29
29
  "files": [
30
30
  "dist",
31
31
  "README.md",