dependency-tree 11.0.1 → 11.1.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.
- package/README.md +1 -1
- package/package.json +13 -12
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
npm install dependency-tree
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
* Works for JS (AMD, CommonJS, ES6 modules),
|
|
13
|
+
* Works for JS (AMD, CommonJS, ES6 modules), TypeScript, and CSS preprocessors (CSS (PostCSS), Sass, Stylus, and Less); basically, any module type supported by [Precinct](https://github.com/dependents/node-precinct).
|
|
14
14
|
- For CommonJS modules, 3rd party dependencies (npm installed dependencies) are included in the tree by default
|
|
15
15
|
- Dependency path resolutions are handled by [filing-cabinet](https://github.com/dependents/node-filing-cabinet)
|
|
16
16
|
- Supports RequireJS and Webpack loaders
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dependency-tree",
|
|
3
|
-
"version": "11.0
|
|
3
|
+
"version": "11.1.0",
|
|
4
4
|
"description": "Get the dependency tree of a module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -49,19 +49,19 @@
|
|
|
49
49
|
"node": ">=18"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"commander": "^12.
|
|
53
|
-
"filing-cabinet": "^5.0.
|
|
54
|
-
"precinct": "^12.0
|
|
55
|
-
"typescript": "^5.
|
|
52
|
+
"commander": "^12.1.0",
|
|
53
|
+
"filing-cabinet": "^5.0.3",
|
|
54
|
+
"precinct": "^12.2.0",
|
|
55
|
+
"typescript": "^5.7.3"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"c8": "^
|
|
59
|
-
"debug": "^4.
|
|
60
|
-
"mocha": "^
|
|
61
|
-
"mock-fs": "^5.
|
|
62
|
-
"resolve": "^1.22.
|
|
63
|
-
"sinon": "^
|
|
64
|
-
"xo": "^0.
|
|
58
|
+
"c8": "^10.1.3",
|
|
59
|
+
"debug": "^4.4.0",
|
|
60
|
+
"mocha": "^11.1.0",
|
|
61
|
+
"mock-fs": "^5.4.1",
|
|
62
|
+
"resolve": "^1.22.10",
|
|
63
|
+
"sinon": "^19.0.2",
|
|
64
|
+
"xo": "^0.60.0"
|
|
65
65
|
},
|
|
66
66
|
"xo": {
|
|
67
67
|
"space": true,
|
|
@@ -99,6 +99,7 @@
|
|
|
99
99
|
"error",
|
|
100
100
|
"never"
|
|
101
101
|
],
|
|
102
|
+
"unicorn/no-anonymous-default-export": "off",
|
|
102
103
|
"unicorn/prefer-module": "off",
|
|
103
104
|
"unicorn/prefer-top-level-await": "off",
|
|
104
105
|
"unicorn/prevent-abbreviations": "off"
|