-
Notifications
You must be signed in to change notification settings - Fork 214
/
package.json
121 lines (121 loc) · 3.92 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "license-checker",
"description": "Check license info for a package",
"author": "Dav Glass <[email protected]>",
"version": "25.0.1",
"contributors": [
"Adam Weber <[email protected]>",
"Andrew Couch <[email protected]>",
"Asharma <[email protected]>",
"Bryan English <[email protected]>",
"Christoph Werner <[email protected]>",
"Cory Reed <[email protected]>",
"Damien Larmine <[email protected]>",
"Dan Rumney <[email protected]>",
"Dav Glass <[email protected]>",
"Dick Wiggers <[email protected]>",
"Drew Folta <[email protected]>",
"Elijah Insua <[email protected]>",
"Francois Zaninotto <[email protected]>",
"Glen Arrowsmith <[email protected]>",
"Helio Frota <[email protected]>",
"Holger Knust <[email protected]>",
"Honza Javorek <[email protected]>",
"Ivan Latunov <[email protected]>",
"James Bloomer <[email protected]>",
"Jonny Reeves <[email protected]>",
"Jonny Reeves <[email protected]>",
"Ladislav Prskavec <[email protected]>",
"Ladislav Prskavec <[email protected]>",
"Lorenzo Cesana <[email protected]>",
"Mark Tse <[email protected]>",
"Mark Tse <[email protected]>",
"Mattias Amnefelt <[email protected]>",
"Michael Kühnel <[email protected]>",
"Michael Williamson <[email protected]>",
"Paul Mandel <[email protected]>",
"Peter Uithoven <[email protected]>",
"Philipp Tusch <[email protected]>",
"Rogier Schouten <[email protected]>",
"Stan Senotrusov <[email protected]>",
"Stoyan Revov <[email protected]>",
"Tero Keski-Valkama <[email protected]>",
"Thomas Grainger <[email protected]>",
"Tim Brust <[email protected]>",
"Tim Oxley <[email protected]>",
"Timothée Mazzucotelli <[email protected]>",
"Tobi <[email protected]>",
"Tobias Büschel <[email protected]>",
"Yukari Ishibashi <[email protected]>",
"Yuri Zapuchlak <[email protected]>",
"badunk <[email protected]>",
"creising <[email protected]>",
"gdw2 <[email protected]>",
"ktmouk <[email protected]>",
"santiagocanti <[email protected]>",
"tbbstny <[email protected]>",
"zodiac403 <[email protected]>"
],
"dependencies": {
"chalk": "^2.4.1",
"debug": "^3.1.0",
"mkdirp": "^0.5.1",
"nopt": "^4.0.1",
"read-installed": "~4.0.3",
"semver": "^5.5.0",
"spdx-correct": "^3.0.0",
"spdx-expression-parse": "^3.0.0",
"spdx-satisfies": "^4.0.0",
"treeify": "^1.1.0"
},
"devDependencies": {
"camden.jshint": "github:cfjedimaster/brackets-jshint",
"detectionizr": "*",
"eslint": "^4.19.1",
"format-package-json": "^0.2.0",
"git-contributors": "^0.2.3",
"github-changes": "^1.1.2",
"istanbul": "^0.4.3",
"jenkins-mocha": "^6.0.0",
"locale": "^0.1.0",
"queue": "^4.4.2",
"request": "^2.85.0",
"rimraf": "^2.6.2"
},
"keywords": [
"license",
"cli",
"checker",
"oss"
],
"main": "./lib/index.js",
"bin": {
"license-checker": "./bin/license-checker"
},
"scripts": {
"changes": "github-changes -o davglass -r license-checker",
"contrib": "./scripts/contrib.js",
"pretest": "eslint --fix .",
"test": "jenkins-mocha ./tests/*.js",
"posttest": "nyc check-coverage && nyc report -r lcov -r text -r text-summary"
},
"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"
},
"nyc": {
"check-coverage": true,
"exclude": [
"**/tests/*.js"
],
"lines": 99,
"statements": 99,
"functions": 100,
"branches": 99
}
}