forked from RSeidelsohn/license-checker-rseidelsohn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
160 lines (160 loc) · 5.69 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "license-checker-rseidelsohn",
"description": "Extract NPM package licenses - Feature enhanced version of the original license-checker v25.0.1",
"author": "Roman Seidelsohn <[email protected]>",
"version": "4.2.5",
"license": "BSD-3-Clause",
"private": false,
"engines": {
"npm": ">=8",
"node": ">=18"
},
"engine-strict": true,
"keywords": [
"license",
"cli",
"checker",
"oss"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"license-checker-rseidelsohn": "./bin/license-checker-rseidelsohn"
},
"scripts": {
"changes": "github-changes -o RSeidelsohn -r license-checker-rseidelsohn",
"contrib": "node ./scripts/contrib.js",
"pretest": "eslint --fix .",
"test": "jenkins-mocha ./tests/*.js",
"posttest": "nyc check-coverage && nyc report -r lcov -r text -r text-summary",
"lint": "npx eslint --ext js .",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier lib --check && npx prettier bin/license-checker-rseidelsohn --check && npx prettier scripts --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"format:dry": "npm run prettier && npm run lint",
"prepare": "husky install"
},
"preferGlobal": true,
"bugs": {
"url": "http://github.com/RSeidelsohn/license-checker-rseidelsohn/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/RSeidelsohn/license-checker-rseidelsohn.git"
},
"nyc": {
"check-coverage": true,
"exclude": [
"**/tests/*.js"
],
"lines": 90,
"statements": 80,
"functions": 80,
"branches": 80
},
"contributors": [
"Adam Weber <[email protected]>",
"Andrew Couch <[email protected]>",
"Andrii Kostenko <[email protected]>",
"Asharma <[email protected]>",
"Backfighter <[email protected]>",
"Beatrice Guerra <[email protected]>",
"Bryan English <[email protected]>",
"Christoph Werner <[email protected]>",
"Coada <[email protected]>",
"Cory Reed <[email protected]>",
"Damien Larmine <[email protected]>",
"Dan Rumney <[email protected]>",
"Dav Glass <[email protected]>",
"David Langer <[email protected]>",
"Dick Wiggers <[email protected]>",
"Dmitry Semigradsky <[email protected]>",
"Drew Folta <[email protected]>",
"Elijah Insua <[email protected]>",
"Eugene G <[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]>",
"Marco Biedermann <[email protected]>",
"Mark Tse <[email protected]>",
"Mark Tse <[email protected]>",
"Markus Maga <[email protected]>",
"Mattias Amnefelt <[email protected]>",
"Mehmet Baker <[email protected]>",
"Michael Kühnel <[email protected]>",
"Michael Williamson <[email protected]>",
"Mikayla Maki <[email protected]>",
"Paul Mandel <[email protected]>",
"Peter Uithoven <[email protected]>",
"Philipp Tusch <[email protected]>",
"Pijus Petkevičius <[email protected]>",
"Rasmus Lauridsen <[email protected]>",
"Rasmus Lauridsen <[email protected]>",
"Rogier Schouten <[email protected]>",
"Roman Seidelsohn <[email protected]>",
"Roman Seidelsohn <[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]>",
"Werner Robitza <[email protected]>",
"Yukari Ishibashi <[email protected]>",
"Yuri Zapuchlak <[email protected]>",
"badunk <[email protected]>",
"creising <[email protected]>",
"dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"gdw2 <[email protected]>",
"ktmouk <[email protected]>",
"santiagocanti <[email protected]>",
"tbbstny <[email protected]>",
"zodiac403 <[email protected]>"
],
"dependencies": {
"chalk": "4.1.2",
"debug": "^4.3.4",
"lodash.clonedeep": "^4.5.0",
"mkdirp": "^1.0.4",
"nopt": "^5.0.0",
"read-installed-packages": "^2.0.1",
"semver": "^7.3.5",
"spdx-correct": "^3.1.1",
"spdx-expression-parse": "^3.0.1",
"spdx-satisfies": "^5.0.1",
"treeify": "^1.1.0"
},
"devDependencies": {
"@types/mssql": "8.1.1",
"@types/node": "^16.18.11",
"detectionizr": "*",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"format-package-json": "^0.2.0",
"git-contributors": "^0.2.5",
"github-changes": "^2.0.3",
"husky": "^8.0.0",
"istanbul": "^0.4.5",
"jenkins-mocha": "^8.0.0",
"lint-staged": "^13.1.0",
"locale": "^0.1.0",
"prettier": "^2.8.3",
"queue": "^6.0.2",
"request": "^2.88.2",
"rimraf": "^3.0.2"
}
}