jscan 0.9.0 → 0.9.1

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/README.md +1 -1
  2. package/package.json +9 -8
package/README.md CHANGED
@@ -36,7 +36,7 @@ jscan analyze ./src --format html --output report.html
36
36
 
37
37
  ## Documentation
38
38
 
39
- For full documentation, visit [GitHub](https://github.com/ludo-technologies/jscan).
39
+ For full documentation, visit [GitHub](https://github.com/ludo-technologies/polyscan).
40
40
 
41
41
  ## License
42
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jscan",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Code quality analyzer for JavaScript/TypeScript projects",
5
5
  "keywords": [
6
6
  "javascript",
@@ -12,13 +12,14 @@
12
12
  "complexity",
13
13
  "dead-code"
14
14
  ],
15
- "homepage": "https://github.com/ludo-technologies/jscan",
15
+ "homepage": "https://github.com/ludo-technologies/polyscan",
16
16
  "bugs": {
17
- "url": "https://github.com/ludo-technologies/jscan/issues"
17
+ "url": "https://github.com/ludo-technologies/polyscan/issues"
18
18
  },
19
19
  "repository": {
20
20
  "type": "git",
21
- "url": "git+https://github.com/ludo-technologies/jscan.git"
21
+ "url": "git+https://github.com/ludo-technologies/polyscan.git",
22
+ "directory": "jscan/npm"
22
23
  },
23
24
  "license": "MIT",
24
25
  "author": "Ludo Technologies",
@@ -33,9 +34,9 @@
33
34
  "node": ">=14"
34
35
  },
35
36
  "optionalDependencies": {
36
- "jscan-darwin-arm64": "0.9.0",
37
- "jscan-linux-arm64": "0.9.0",
38
- "jscan-linux-x64": "0.9.0",
39
- "jscan-windows-x64": "0.9.0"
37
+ "jscan-darwin-arm64": "0.9.1",
38
+ "jscan-linux-arm64": "0.9.1",
39
+ "jscan-linux-x64": "0.9.1",
40
+ "jscan-windows-x64": "0.9.1"
40
41
  }
41
42
  }