Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grpcmkr-cli

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grpcmkr-cli - npm Package Compare versions

Comparing version 1.0.7 to 1.0.8

6

package.json
{
"name": "grpcmkr-cli",
"version": "1.0.7",
"version": "1.0.8",
"description": "Grpc CLI for developers",
"scripts": {
"test": "jest --config test/jest-config.json",
"test:dev":"jest --config test/jest-config.json --watchAll",
"coverage":"jest --config test/jest-config.json --coverage",
"build": "tsc",
"start": "node dist/bin/grpcmkr.js",
"build:prod": "webpack"
"webpack": "webpack --mode=production"
},

@@ -11,0 +13,0 @@ "repository": {

@@ -1,11 +0,15 @@

const path = require('path')
const path = require('path');
module.exports = {
mode: 'production',
devtool: "inline-source-map",
entry: './bin/grpcmkr.ts',
target: 'node',
entry: {
index: './bin/grpcmkr.ts',
},
output: {
path: path.resolve(__dirname, './dist/bin'),
filename: 'grpcmkr.js'
filename: 'grpcmkr.js',
library: 'grpcmkr-cli',
libraryTarget: 'umd',
globalObject: 'this',
umdNamedDefine: true,
},

@@ -20,3 +24,2 @@ resolve: {

loader: 'ts-loader',
exclude: /node_modules/,
},

@@ -23,0 +26,0 @@ ],

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc