mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 18:08:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			976 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			976 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: '>=10.0.0',
 | |
|       npm: '>=6.0.0',
 | |
|     },
 | |
|     license: scope.license || 'MIT',
 | |
|   });
 | |
| };
 | 
