
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
Performs cross platform debian packaging
This task allows you to create your .deb without debhelper or Java. It's pure javascript. You only need tar and ar.
This plugin requires Grunt ~0.4
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-deb --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-deb');
deb_package task###Overview
In your Gruntfile (inside the initConfig object), add a section named deb_package.
A lot of options in this section are provided by the package.json file, but if you want to override them here's what to do:
grunt.initConfig({
deb_package: {
options: {
maintainer: "Paul Varache <perso@paulvarache.ninja>",
version: "1.0.0",
name: "my-package",
short_description: "short",
long_description: "long",
target_architecture: "all",
category: "devel",
build_number: "1",
dependencies: [], // List of the package dependencies
tmp_dir: '.tmp', // The task working dir
output: './output/' // Where your .deb should be created
},
build: {
// Here you define what you want in your package
files: [{
cwd: './test_files/source',
src: '**/*',
dest: '/opt/my-package'
}],
// The task will create the links as src: dest
links: {
'/usr/bin/mp': '/opt/my-package/bin/mp'
},
// You can provide preinst, postinst, prerm and postrm script either by giving a file or what to put in it
scripts: {
preinst: {
src: './test_files/preinst.sh'
},
postinst: {
content: 'echo "postinst test"'
}
}
}
}
});
This will create a package with the name my-package_1.0.0-1_all.deb taht can be installed with sudo dpkg -i my-package_1.0.0-1_all.deb on all debian based architectures.
Type: String
Default value: process.env.DEBFULLNAME <process.env.DEBEMAIL> or package.json author.name <author.email>
This value defines the maintainer of the package.
Type: String
Default value: package.json version
This value defines the version of the package.
Type: String
Default value: package.json name
This value defines the name of the package.
Type: String
Default value: First line of package.json description
This value defines the short description of the package.
Type: String
Default value: All line of package.json description except the first one
This value defines the long description of the package.
Type: String
Default value: all
This value defines the architecture of the package.
Type: String
Default value: process.env.BUILD_NUMBER || process.env.DRONE_BUILD_NUMBER || process.env.TRAVIS_BUILD_NUMBER || 1
This value defines the build number of the package.
Type: String
Default value: misc
The software category. Used to fill the "section" field of the control file
There is more to do:
This task was developped with the help of LoĂŻc Marie
FAQs
A grunt task that performs cross platform debian packaging
We found that grunt-deb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.