forked from davglass/license-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.01 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "license-checker",
"description": "Check license info for a pacakge",
"author": "Dav Glass <[email protected]>",
"version": "5.0.0",
"contributors": [
"Andrew Couch <[email protected]>",
"Cory Reed <[email protected]>",
"Dav Glass <[email protected]>",
"Elijah Insua <[email protected]>",
"Glen Arrowsmith <[email protected]>",
"Holger Knust <[email protected]>",
"James Bloomer <[email protected]>",
"Mattias Amnefelt <[email protected]>",
"Michael Williamson <[email protected]>",
"Paul Mandel <[email protected]>",
"Philipp Tusch <[email protected]>",
"Stan Senotrusov <[email protected]>",
"Tero Keski-Valkama <[email protected]>",
"Tim Oxley <[email protected]>",
"Yuri Zapuchlak <[email protected]>",
"badunk <[email protected]>",
"gdw2 <[email protected]>"
],
"dependencies": {
"chalk": "~0.5.1",
"debug": "^2.2.0",
"mkdirp": "^0.3.5",
"nopt": "^2.2.0",
"read-installed": "~3.1.3",
"treeify": "^1.0.1"
},
"devDependencies": {
"detectionizr": "*",
"format-package-json": "^0.2.0",
"git-contributors": "^0.2.3",
"istanbul": "*",
"jshint": "~1.1.0",
"queue": "^1.0.0",
"request": "^2.34.0",
"vows": "0.8.0",
"yui-lint": "~0.1.1"
},
"keywords": [
"license",
"cli",
"checker",
"oss"
],
"main": "./lib/index.js",
"bin": {
"license-checker": "./bin/license-checker"
},
"scripts": {
"contrib": "./scripts/contrib.js",
"pretest": "jshint --config ./node_modules/yui-lint/jshint.json ./lib/",
"test": "istanbul cover --print both vows -- --spec ./tests/*.js",
"posttest": "istanbul check-coverage --statements 95 --functions 100 --lines 95 --branches 90"
},
"preferGlobal": "true",
"bugs": {
"url": "http://github.com/davglass/license-checker/issues"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/davglass/license-checker.git"
}
}