Socket
Socket
Sign inDemoInstall

csv-writer

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.2.0 to 1.3.0

csv-writer-1.3.0.tgz

8

CHANGELOG.md

@@ -8,2 +8,10 @@ # Changelog

## [1.3.0] - 2019-04-19
### Changed
- Changed project language from JavaScript to TypeScript.
### Added
- Made TypeScript type definitions accessible. Thanks to @coyotte508.
[PR #23](https://github.com/ryu1kn/csv-writer/pull/23)
## [1.2.0] - 2018-08-22

@@ -10,0 +18,0 @@ ### Added

24

package.json
{
"name": "csv-writer",
"version": "1.2.0",
"version": "1.3.0",
"description": "Convert objects/arrays into a CSV string or write them into a CSV file",
"main": "index.js",
"main": "dist/index.js",
"types": "src/index.ts",
"scripts": {
"compile": "tsc -p ./",
"test": "npm run test:unit && npm run test:it",
"pretest:unit": "rm -rf test-tmp && mkdir test-tmp",
"test:unit": "mocha test/unit --recursive",
"test:it": "test/integration/test.sh",
"test:unit": "mocha --require ts-node/register --recursive 'src/test/**/*.ts'",
"test:it": "test-integration/test.sh",
"coverage": "nyc npm run test:unit",
"lint": "eslint ."
"lint": "tslint -p .",
"prepare": "npm run compile"
},

@@ -30,9 +33,12 @@ "repository": {

"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^8.10.40",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.0.0",
"eslint": "^4.18.1",
"eslint-config-xo": "^0.20.1",
"mocha": "^5.0.1",
"nyc": "^11.4.1"
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"ts-node": "^8.0.2",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
}
}

@@ -269,1 +269,21 @@ [![Build Status](https://travis-ci.org/ryu1kn/csv-writer.svg?branch=master)](https://travis-ci.org/ryu1kn/csv-writer)

* `<string>`
## Request Features or Report Bugs
Feature requests and bug reports are very welcome: https://github.com/ryu1kn/csv-writer/issues
A couple of requests from me when you raise an issue on GitHub.
* **Requesting a feature:** Please try to provide the context of why you want the feature. Such as,
in what situation the feature could help you and how, or how the lack of the feature is causing an inconvenience to you.
I can't start thinking of introducing it until I understand how it helps you 🙂
* **Reporting a bug:** If you could provide a runnable code snippet that reproduces the bug, it would be very helpful!
## Development
### Prerequisite
* Node version 8 or above
* Docker
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc