forked from iandotkelly/nlf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.11 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.11 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@voltserver/nlf",
"title": "Node License Finder",
"description": "Find licenses for a node application and its node_module dependencies",
"author": "Ian Kelly <iandotkelly@gmail.com>",
"version": "2.1.1-4",
"license": "MIT",
"bin": {
"nlf": "./bin/nlf-cli.js"
},
"homepage": "https://github.com/voltserver/nlf",
"repository": {
"type": "git",
"url": "git://github.com/voltserver/nlf.git"
},
"dependencies": {
"archy": "1.0.0",
"commander": "2.19.0",
"compare-versions": "3.4.0",
"fast-glob": "^3.2.7",
"snyk-resolve-deps": "^4.7.3"
},
"devDependencies": {
"jshint": "2.10.1",
"mocha": "^9.1.3",
"should": "13.2.3"
},
"engines": {
"node": ">=4"
},
"keywords": [
"license",
"licence",
"checker",
"finder",
"audit",
"legal",
"dependency",
"cli"
],
"scripts": {
"test": "mocha",
"lint": "jshint lib test",
"coveralls": "npx nyc mocha && npx nyc report --reporter=html"
},
"nyc": {
"exclude": [
"gulpfile.js"
],
"reporter": [
"lcov",
"text-summary"
]
}
}