You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@codefresh-io/cf-git-providers

Package Overview
Dependencies
Maintainers
28
Versions
124
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codefresh-io/cf-git-providers - npm Package Compare versions

Comparing version

to
0.0.9

25

package.json
{
"name": "@codefresh-io/cf-git-providers",
"version": "0.0.8",
"version": "0.0.9",
"description": "An NPM module/CLI for interacting with various git providers",
"main": "./dist/index.js",
"keywords": [
"codefresh",
"cli",
"git",
"providers",
"git-providers"
],
"main": "./lib/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"types": "./lib/index.d.ts",
"repository": "https://github.com/codefresh-io/cf-git-providers",

@@ -22,3 +29,3 @@ "author": "Codefresh",

"bin": {
"cgp": "bin/index.ts"
"cgp": "lib/bin/index.js"
},

@@ -28,8 +35,12 @@ "engines": {

},
"files": [
"lib/**/*"
],
"scripts": {
"lint": "tslint --project . && eslint . --ext .js --ignore-pattern dist",
"lint": "tslint --project . && eslint . --ext .js --ignore-pattern lib",
"test": "NODE_ENV=test jest --runInBand --ci --color --coverage",
"debug": "node -r ts-node/register --inspect bin/index.ts",
"clean-build": "rm -rf dist && yarn build",
"build": "tsc --listEmittedFiles --declaration && chmod +x dist/bin/index.js",
"clean-build": "rm -rf lib && yarn build",
"build": "tsc --listEmittedFiles --declaration && chmod +x lib/bin/index.js",
"clean": "rm -rf lib",
"ci-publish": "ci-publish"

@@ -36,0 +47,0 @@ },