-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.62 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "dependency-tree",
"version": "12.0.0",
"description": "Get the dependency tree of a module",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./index.js"
}
},
"files": [
"bin/cli.js",
"lib/*.js",
"types/",
"index.js"
],
"bin": {
"dependency-tree": "bin/cli.js"
},
"scripts": {
"generate:types": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir types index.js",
"check:types": "npm run generate:types && git diff HEAD --exit-code types/index.d.ts",
"lint": "xo",
"fix": "xo --fix",
"vitest": "vitest",
"test": "npm run lint && npm run check:types && vitest run",
"test:ci": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dependents/node-dependency-tree.git"
},
"keywords": [
"dependency",
"tree",
"graph",
"module",
"ast",
"requirejs",
"AMD",
"commonjs",
"es6",
"sass",
"stylus",
"less",
"typescript"
],
"author": "Joel Kemp <joel@mrjoelkemp.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dependents/node-dependency-tree/issues"
},
"homepage": "https://github.com/dependents/node-dependency-tree",
"engines": {
"node": ">=20.19.0 || >=22.12.0"
},
"dependencies": {
"@discoveryjs/json-ext": "^1.1.0",
"commander": "^14.0.3",
"filing-cabinet": "^6.0.0",
"precinct": "^13.0.0",
"typescript": "^6.0.3"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.7",
"debug": "^4.4.3",
"vitest": "^4.1.7",
"xo": "^2.0.2"
}
}