We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0ebb97 commit 01058efCopy full SHA for 01058ef
1 file changed
formatPkg.js
@@ -58,6 +58,7 @@ export default function formatPkg(pkg) {
58
}
59
60
const dependencies = cleaned.dependencies || {};
61
+ const devDependencies = cleaned.devDependencies || {};
62
const concatenatedName = cleaned.name.replace(/[-/@_.]+/g, '');
63
64
const rawPkg = {
@@ -71,6 +72,7 @@ export default function formatPkg(pkg) {
71
72
version,
73
description: cleaned.description ? cleaned.description : null,
74
dependencies,
75
+ devDependencies,
76
originalAuthor: cleaned.author,
77
githubRepo,
78
gitHead,
0 commit comments