Socket
Socket
Sign inDemoInstall

csv-generate

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csv-generate - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

.babelrc

17

CHANGELOG.md
# Changelog
## trunk
## Version 2.0.1
tests: remove references to coverage
* package: es5 backward compatiblity
* package: ignore yarn lock file
## 2.0.0
This major version use CoffeeScript 2 which produces a modern JavaScript syntax
(ES6, or ES2015 and later) and break the compatibility with versions of Node.js
lower than 7.6 as well as the browsers. It is however stable in term of API.
* package: use CoffeeScript 2
## v1.1.2
* tests: remove references to coverage
## v1.1.0

@@ -9,0 +22,0 @@

2

lib/index.js

@@ -1,2 +0,2 @@

// Generated by CoffeeScript 2.0.1
// Generated by CoffeeScript 2.0.3
// # CSV Generator

@@ -3,0 +3,0 @@

{
"version": "2.0.0",
"version": "2.0.1",
"name": "csv-generate",
"description": "CSV and object generation implementing the Node.js `stream.Readable` API",
"keywords": [ "stream", "generate", "csv", "object" ],
"keywords": [
"stream",
"generate",
"csv",
"object"
],
"license": "BSD-3-Clause",

@@ -14,3 +19,6 @@ "repository": {

"author": "David Worms <david@adaltas.com> (http://www.adaltas.com)",
"dependencies": {},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
},
"devDependencies": {

@@ -24,6 +32,12 @@ "coffeescript": "~2.0.1",

"scripts": {
"coffee": "./node_modules/.bin/coffee -b -o lib src",
"pretest": "./node_modules/.bin/coffee -b -o lib src",
"test": "NODE_ENV=test ./node_modules/.bin/mocha test/**/*.coffee"
"preversion": "rm -rf lib && npm test && grep '## Trunk' CHANGELOG.md",
"version": "version=`grep '^ \"version\": ' package.json | sed 's/.*\"\\([0-9\\.]*\\)\".*/\\1/'` && sed -i \"s/## Trunk/## Version $version/\" CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish",
"patch": "npm version patch -m 'Bump to version %s'",
"minor": "npm version minor -m 'Bump to version %s'",
"major": "npm version major -m 'Bump to version %s'",
"coffee": "coffee -b -o lib src && cd lib && babel *.js -d es5 && cd ..",
"pretest": "coffee -b -o lib src && cd lib && babel *.js -d es5 && cd ..",
"test": "mocha test/**/*.coffee"
}
}
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