-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"author": "Glen R. Goodwin (http://www.arei.net)",
"name": "license-extractor",
"keywords": [
"license",
"license extract",
"legal",
"legal extract",
"licensing",
"licensing extract"
],
"description": "Recursively walk your project and get a copy of all sub-project license files. This is great for cases where Legal asks you for a list of all the licenses you are using in your project.",
"version": "1.0.4",
"homepage": "http://github.com/arei/license-extractor",
"bugs": {
"url": "http://github.com/arei/license-extractor/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/arei/license-extractor/blob/master/LICENSE.txt"
}
],
"repository": {
"type": "git",
"url": "git://github.com/arei/license-extractor.git"
},
"main": "index.js",
"bin": {
"licext": "./bin/licext"
},
"engines": {
"node": ">=0.10"
},
"dependencies": {
"findit": "^2.0.0",
"minimist": "^1.1.0",
"mkdirp": "^0.5.0",
"rimraf": "^2.2.8"
},
"devDependencies": {},
"optionalDependencies": {}
}