forked from dependents/node-dependency-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.27 KB
/
package.json
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
{
"name": "dependency-tree",
"version": "8.1.2",
"description": "Get the dependency tree of a module",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jscs index.js test/test.js && ./node_modules/.bin/mocha --require esm test/test.js"
},
"bin": {
"dependency-tree": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "[email protected]:mrjoelkemp/node-dependency-tree.git"
},
"keywords": [
"dependency",
"tree",
"graph",
"module",
"ast",
"requirejs",
"AMD",
"commonjs",
"es6",
"sass",
"stylus",
"less",
"typescript"
],
"author": "Joel Kemp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrjoelkemp/node-dependency-tree/issues"
},
"engines": {
"node": "^10.13 || ^12 || >=14"
},
"homepage": "https://github.com/mrjoelkemp/node-dependency-tree",
"dependencies": {
"commander": "^2.20.3",
"debug": "^4.3.1",
"filing-cabinet": "^3.0.1",
"precinct": "^8.0.0",
"typescript": "^3.9.7"
},
"devDependencies": {
"esm": "^3.2.25",
"jscs": "^3.0.7",
"jscs-preset-mrjoelkemp": "~2.0.0",
"mocha": "^8.2.1",
"mock-fs": "^4.13.0",
"resolve": "^1.19.0",
"rewire": "^5.0.0",
"sinon": "^9.2.1"
}
}