mirror of
https://github.com/strapi/strapi.git
synced 2025-07-17 05:53:01 +00:00
46 lines
984 B
JavaScript
46 lines
984 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Module dependencies
|
|
*/
|
|
|
|
// Public node modules.
|
|
const _ = require('lodash');
|
|
|
|
/**
|
|
* Expose main package JSON of the application
|
|
* with basic info, dependencies, etc.
|
|
*/
|
|
|
|
module.exports = scope => {
|
|
// Finally, return the JSON.
|
|
return _.merge(scope.appPackageJSON || {}, {
|
|
name: `strapi-plugin-${scope.id}`,
|
|
version: '0.0.0',
|
|
description: 'This is the description of the plugin.',
|
|
strapi: {
|
|
name: scope.id,
|
|
icon: 'plug',
|
|
description: `Description of ${scope.id} plugin.`,
|
|
},
|
|
dependencies: {},
|
|
author: {
|
|
name: scope.author || 'A Strapi developer',
|
|
email: scope.email || '',
|
|
url: scope.website || '',
|
|
},
|
|
maintainers: [
|
|
{
|
|
name: scope.author || 'A Strapi developer',
|
|
email: scope.email || '',
|
|
url: scope.website || '',
|
|
},
|
|
],
|
|
engines: {
|
|
node: '>=12.x. <=14.x.x',
|
|
npm: '>=6.0.0',
|
|
},
|
|
license: scope.license || 'MIT',
|
|
});
|
|
};
|