-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 953 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
{
"name": "npm-dep-info",
"version": "1.4.0",
"description": "Generates a glimpse of descriptions for your dependencies in the package.json",
"bin": {
"npm-dep-info": "bin/cmd.js"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/pH200/npm-dep-info.git"
},
"homepage": "https://github.com/pH200/npm-dep-info",
"scripts": {
"example-json": "node bin/cmd.js -i node_modules/exorcist/ > example.json",
"example-md": "node bin/cmd.js -i node_modules/exorcist/ -M > example.md",
"test-json": "node bin/cmd.js -i node_modules/exorcist/ -I keywords,license",
"test-md": "node bin/cmd.js -i node_modules/exorcist/ -M -I keywords,license"
},
"keywords": [
"npm",
"dependencies",
"package.json",
"analyze",
"modules"
],
"author": "pH200 <ph.minamo@cytisan.com>",
"license": "BSD",
"dependencies": {
"cli": "^0.6.6",
"cli-table": "^0.3.1"
}
}