-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "npm-license-crawler",
"version": "0.2.1",
"homepage": "https://github.com/mwittig/npm-license-crawler",
"description": "Analyzes license information for multiple node.js modules (package.json files) as part of your software project.",
"main": "./lib/index.js",
"bin": {
"npm-license-crawler": "./bin/npm-license-crawler"
},
"dependencies": {
"async": "^2.6.1",
"chalk": "^2.4.2",
"jquery-extend": "~2.0.3",
"license-checker": "git+https://github.com/mwittig/license-checker#d546e3f738e14c62e732346fa355162d46700893",
"mkdirp": "^0.5.1",
"nopt": "^3.0.6",
"nopt-defaults": "^0.0.1",
"nopt-usage": "^0.1.0",
"treeify": "^1.1.0"
},
"devDependencies": {
"vows": "*",
"istanbul": "*"
},
"scripts": {
"test": "istanbul cover --print both vows --"
},
"author": {
"name": "Marcus Wittig",
"url": "https://github.com/mwittig/npm-license-crawler"
},
"contributors": [
{
"name": "Marcus Wittig",
"url": "https://github.com/mwittig"
}
],
"bugs": {
"url": "http://github.com/mwittig/npm-license-crawler/issues"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/mwittig/npm-license-crawler.git"
},
"keywords": [
"license",
"npm",
"checker",
"crawler"
],
"engines": {
"node": ">= 4",
"npm": ">1.1.x"
}
}