forked from dependents/node-dependency-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.35 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
{
"name": "dependency-tree",
"version": "7.2.1",
"description": "Get the dependency tree of a module",
"main": "index.js",
"scripts": {
"test": "jscs index.js test/test.js && ./node_modules/.bin/mocha --require @babel/register test/test.js"
},
"bin": {
"dependency-tree": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git@github.com:mrjoelkemp/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/mrjoelkemp/node-dependency-tree/issues"
},
"engines": {
"node": ">=6.0.0"
},
"homepage": "https://github.com/mrjoelkemp/node-dependency-tree",
"dependencies": {
"commander": "^2.19.0",
"debug": "^4.1.1",
"filing-cabinet": "^2.5.1",
"precinct": "^6.2.0",
"typescript": "^3.7.5"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"jscs": "^3.0.7",
"jscs-preset-mrjoelkemp": "~2.0.0",
"mocha": "^5.0.0",
"mock-fs": "^4.7.0",
"resolve": "^1.9.0",
"rewire": "^4.0.1",
"sinon": "^6.1.5"
}
}