easy-dep-graph 1.1.3 → 1.2.0

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 (4) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +162 -130
  3. package/bin/index.js +1128 -455
  4. package/package.json +74 -67
package/package.json CHANGED
@@ -1,67 +1,74 @@
1
- {
2
- "name": "easy-dep-graph",
3
- "version": "1.1.3",
4
- "description": "Easily see the dependency graph of your npm project",
5
- "homepage": "https://github.com/danisss9/easy-dep-graph#readme",
6
- "repository": {
7
- "type": "git",
8
- "url": "https://github.com/danisss9/easy-dep-graph.git"
9
- },
10
- "bugs": {
11
- "url": "https://github.com/danisss9/easy-dep-graph/issues"
12
- },
13
- "bin": {
14
- "easy-dep-graph": "bin/index.js"
15
- },
16
- "type": "module",
17
- "license": "MIT",
18
- "keywords": [
19
- "node",
20
- "nodejs",
21
- "npm",
22
- "npx",
23
- "list",
24
- "la",
25
- "la",
26
- "easy",
27
- "dep",
28
- "circular",
29
- "dependencies",
30
- "dependency",
31
- "dependent",
32
- "peerDeps",
33
- "peerDependencies",
34
- "graph",
35
- "visual",
36
- "browser",
37
- "angular",
38
- "ng",
39
- "react",
40
- "vue",
41
- "svelte",
42
- "javascript",
43
- "typescript",
44
- "js",
45
- "ts"
46
- ],
47
- "scripts": {
48
- "start": "node ./bin/index.js",
49
- "release": "npm run compile:lib && npm run publish:lib",
50
- "compile:lib": "tsc --project ./src/tsconfig.json",
51
- "publish:lib": "npm publish --access public"
52
- },
53
- "dependencies": {
54
- "fastify": "^5.7.4",
55
- "mustache": "^4.2.0",
56
- "open": "^11.0.0",
57
- "semver": "^7.7.3",
58
- "shelljs": "^0.10.0"
59
- },
60
- "devDependencies": {
61
- "@types/mustache": "^4.2.6",
62
- "@types/node": "^25.2.1",
63
- "@types/semver": "^7.7.1",
64
- "@types/shelljs": "^0.10.0",
65
- "typescript": "^5.9.3"
66
- }
67
- }
1
+ {
2
+ "name": "easy-dep-graph",
3
+ "version": "1.2.0",
4
+ "description": "Easily see the dependency graph of your npm project",
5
+ "homepage": "https://github.com/danisss9/easy-dep-graph#readme",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/danisss9/easy-dep-graph.git"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/danisss9/easy-dep-graph/issues"
12
+ },
13
+ "bin": {
14
+ "easy-dep-graph": "bin/index.js"
15
+ },
16
+ "type": "module",
17
+ "license": "MIT",
18
+ "keywords": [
19
+ "node",
20
+ "nodejs",
21
+ "npm",
22
+ "npx",
23
+ "list",
24
+ "la",
25
+ "la",
26
+ "easy",
27
+ "dep",
28
+ "circular",
29
+ "dependencies",
30
+ "dependency",
31
+ "dependent",
32
+ "peerDeps",
33
+ "peerDependencies",
34
+ "graph",
35
+ "visual",
36
+ "browser",
37
+ "angular",
38
+ "ng",
39
+ "react",
40
+ "vue",
41
+ "svelte",
42
+ "javascript",
43
+ "typescript",
44
+ "js",
45
+ "ts",
46
+ "security",
47
+ "scan",
48
+ "malicious",
49
+ "vulnerability",
50
+ "audit",
51
+ "supply-chain",
52
+ "typosquat"
53
+ ],
54
+ "scripts": {
55
+ "start": "node ./bin/index.js",
56
+ "release": "npm run compile:lib && npm run publish:lib",
57
+ "compile:lib": "tsc --project ./src/tsconfig.json",
58
+ "publish:lib": "npm publish --access public"
59
+ },
60
+ "dependencies": {
61
+ "fastify": "^5.8.5",
62
+ "mustache": "^4.2.0",
63
+ "open": "^11.0.0",
64
+ "semver": "^7.7.4",
65
+ "shelljs": "^0.10.0"
66
+ },
67
+ "devDependencies": {
68
+ "@types/mustache": "^4.2.6",
69
+ "@types/node": "^25.6.0",
70
+ "@types/semver": "^7.7.1",
71
+ "@types/shelljs": "^0.10.0",
72
+ "typescript": "^6.0.2"
73
+ }
74
+ }