forked from iandotkelly/nlf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 888 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
38
39
40
41
42
43
44
{
"name": "nlf",
"title": "Node License Finder",
"description": "Find licenses for a node application and its node_module dependencies",
"author": "Ian Kelly <[email protected]>",
"version": "1.1.0",
"license": "MIT",
"bin": {
"nlf": "./bin/nlf-cli.js"
},
"homepage": "https://github.com/iandotkelly/nlf",
"repository": {
"type": "git",
"url": "git://github.com/iandotkelly/nlf.git"
},
"dependencies": {
"archy": "^1.0.0",
"commander": "^2.5.0",
"glob": "^4.0.6",
"read-installed": "^3.0.0"
},
"devDependencies": {
"globs": "^0.1.2",
"jshint": "^2.5.8",
"mocha": "^2.0.1",
"should": "^4.1.0"
},
"engines": {
"node": ">=0.10"
},
"keywords": [
"license",
"licence",
"checker",
"finder",
"audit",
"legal",
"dependency",
"cli"
],
"scripts": {
"test": "make"
}
}