forked from iandotkelly/nlf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.05 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
{
"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.4.3",
"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",
"co": "4.6.0",
"commander": "2.9.0",
"compare-versions": "3.0.0",
"glob-all": "3.1.0 ",
"read-installed": "4.0.3",
"thunkify": "2.1.2"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-coverage": "^0.3.36",
"gulp-coveralls": "^0.1.3",
"gulp-jshint": "^2.0.0",
"gulp-mocha": "^4.3.0",
"jshint": "^2.9.1",
"should": "^11.2.0"
},
"engines": {
"node": ">=0.10"
},
"keywords": [
"license",
"licence",
"checker",
"finder",
"audit",
"legal",
"dependency",
"cli"
],
"scripts": {
"test": "gulp travis"
}
}