forked from davglass/license-checker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
134 lines (134 loc) · 4.13 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
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@metamask/license-checker",
"description": "Check license info for a package",
"author": "Dav Glass <[email protected]>",
"version": "26.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": {
"@metamask/spdx-satisfies": "^6.0.0",
"chalk": "^2.4.1",
"debug": "^4.3.4",
"mkdirp": "^3.0.1",
"nopt": "^6.0.0",
"read-installed": "~4.0.3",
"semver": "^7.5.0",
"spdx-correct": "^3.2.0",
"spdx-expression-parse": "^3.0.1",
"treeify": "^1.1.0"
},
"devDependencies": {
"detectionizr": "*",
"eslint": "^4.19.1",
"format-package-json": "^0.2.0",
"git-contributors": "^0.2.3",
"github-changes": "^2.0.3",
"istanbul": "^0.4.3",
"jenkins-mocha": "^6.0.0",
"locale": "^0.1.0",
"queue": "^4.4.2",
"rimraf": "^2.6.2"
},
"keywords": [
"license",
"cli",
"checker",
"oss"
],
"main": "./lib/index.js",
"files": [
"bin/",
"lib/",
"scripts/",
"CHANGELOG.md",
"NOTICE",
"customFormatExample.json"
],
"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": "https://github.com/MetaMask/license-checker/issues"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/license-checker.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": "^12.13.0 || >=14.15.0"
},
"nyc": {
"check-coverage": true,
"exclude": [
"**/tests/*.js"
],
"lines": 99,
"statements": 99,
"functions": 100,
"branches": 99
}
}