Socket
Socket
Sign inDemoInstall

gulp-csv2json

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-csv2json - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

2

gulpfile.js
var gulp = require('gulp');
var csv2json = require('./');
var rename = require('gulp-rename');

@@ -7,3 +8,4 @@ gulp.task('default', function () {

.pipe(csv2json())
.pipe(rename({extname: '.json'}))
.pipe(gulp.dest('./dist'));
});

5

package.json
{
"name": "gulp-csv2json",
"version": "0.1.1",
"version": "0.1.2",
"description": "csv to json using gulp",

@@ -22,3 +22,4 @@ "main": "index.js",

"gulp": "~3.5.2",
"csv": "~0.3.7"
"csv": "~0.3.7",
"gulp-rename": "~1.1.0"
},

@@ -25,0 +26,0 @@ "author": "chilijung",

@@ -21,2 +21,3 @@ # gulp-csv2json

var csv2json = require('gulp-csv2json');
var rename = require('gulp-rename');

@@ -26,2 +27,3 @@ gulp.task('default', function () {

.pipe(csv2json())
.pipe(rename({extname: '.json'}))
.pipe(gulp.dest('dist'));

@@ -28,0 +30,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