-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (37 loc) · 916 Bytes
/
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
{
"name": "require-analyzer",
"description": "Determine dependencies for a given node.js file, directory tree, or module in code or on the command line",
"version": "0.5.0",
"author": "Nodejitsu Inc. <[email protected]>",
"maintainers": [
"indexzero <[email protected]>",
"AvianFlu <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/nodejitsu/require-analyzer.git"
},
"dependencies": {
"colors": "0.x.x",
"optimist": "0.3.x",
"semver": "1.0.x",
"winston": "0.6.x",
"detective": "0.0.x",
"resolve": "0.2.x",
"eyes": "0.1.x",
"read-installed": "0.0.x"
},
"devDependencies": {
"vows": "0.6.x"
},
"main": "./lib/require-analyzer",
"bin": {
"require-analyzer": "./bin/require-analyzer"
},
"engines": {
"node": ">= 0.4.0"
},
"scripts": {
"test": "vows test/*-test.js --spec"
}
}