forked from mwittig/license-checker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 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
{
"name": "license-checker",
"description": "Check license info for a pacakge",
"author": "Dav Glass <[email protected]>",
"version": "1.0.0",
"dependencies": {
"chalk": "~0.5.1",
"mkdirp": "^0.3.5",
"nopt": "^2.2.0",
"read-installed": "smarkets/read-installed",
"treeify": "^1.0.1"
},
"devDependencies": {
"yui-lint": "~0.1.1",
"jshint": "~1.1.0",
"vows": "*",
"istanbul": "*",
"request": "^2.34.0",
"queue": "^1.0.0",
"detectionizr": "*"
},
"keywords": [
"license",
"cli",
"checker",
"oss"
],
"main": "./lib/index.js",
"bin": {
"license-checker": "./bin/license-checker"
},
"scripts": {
"pretest": "jshint --config ./node_modules/yui-lint/jshint.json ./lib/",
"test": "istanbul cover --print both vows -- --spec ./tests/*.js"
},
"preferGlobal": "true",
"bugs": {
"url": "http://github.com/davglass/license-checker/issues"
},
"licenses": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/davglass/license-checker.git"
}
}