dependency-tree 11.0.0 → 11.0.2

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 +14 -13
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), Typescript, and CSS preprocessors (CSS (PostCSS), Sass, Stylus, and Less); basically, any module type supported by [Precinct](https://github.com/dependents/node-precinct).
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.0",
3
+ "version": "11.0.2",
4
4
  "description": "Get the dependency tree of a module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -46,22 +46,22 @@
46
46
  },
47
47
  "homepage": "https://github.com/dependents/node-dependency-tree",
48
48
  "engines": {
49
- "node": ">=14"
49
+ "node": ">=18"
50
50
  },
51
51
  "dependencies": {
52
- "commander": "^12.0.0",
53
- "filing-cabinet": "^5.0.1",
54
- "precinct": "^12.0.2",
55
- "typescript": "^5.4.5"
52
+ "commander": "^12.1.0",
53
+ "filing-cabinet": "^5.0.2",
54
+ "precinct": "^12.1.3",
55
+ "typescript": "^5.7.3"
56
56
  },
57
57
  "devDependencies": {
58
- "c8": "^9.1.0",
59
- "debug": "^4.3.4",
60
- "mocha": "^10.4.0",
61
- "mock-fs": "^5.2.0",
62
- "resolve": "^1.22.8",
63
- "sinon": "^17.0.1",
64
- "xo": "^0.58.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"