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
39 lines (39 loc) · 905 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 905 Bytes
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
{
"name": "dependency-tree",
"version": "2.0.1",
"description": "Get the dependency tree of a module (as a list)",
"main": "index.js",
"scripts": {
"test": "jscs -p google index.js test/test.js && mocha test/test.js"
},
"bin": {
"tree": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git@github.com:mrjoelkemp/node-dependency-tree.git"
},
"keywords": [
"AMD",
"dependency",
"tree",
"module",
"requirejs"
],
"author": "Joel Kemp <joel@mrjoelkemp.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrjoelkemp/node-dependency-tree/issues"
},
"homepage": "https://github.com/mrjoelkemp/node-dependency-tree",
"dependencies": {
"precinct": "~2.4.1",
"q": "~1.0.1",
"resolve-dependency-path": "~1.0.1"
},
"devDependencies": {
"jscs": "~1.7.3",
"mocha": "~2.0.1",
"sinon": "~1.12.2"
}
}