Skip to content

Commit f76048b

Browse files
authored
Merge pull request #86 from mrodrig/update-dep
Updating dependencies - 2.2.1
2 parents ab753f8 + 0cedbcd commit f76048b

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

.travis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- '4.8'
5-
- '5.12'
6-
- '6.13'
7-
- '7.10'
8-
- '8.9'
9-
- '9.6'
4+
- "10.6"
5+
- "9.11"
6+
- "8.9"
7+
- "6.14"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Convert JSON to CSV or CSV to JSON
22

33
[![Build Status](https://travis-ci.org/mrodrig/json-2-csv.svg?branch=master)](https://travis-ci.org/mrodrig/json-2-csv)
4-
[![bitHound Dependencies](https://www.bithound.io/github/mrodrig/json-2-csv/badges/dependencies.svg)](https://www.bithound.io/github/mrodrig/json-2-csv/master/dependencies/npm)
4+
[![Dependencies](https://img.shields.io/david/mrodrig/json-2-csv.svg?style=flat-square)](https://www.npmjs.org/package/json-2-csv)
55
[![Downloads](http://img.shields.io/npm/dm/json-2-csv.svg)](https://www.npmjs.org/package/json-2-csv)
66
[![NPM version](https://img.shields.io/npm/v/json-2-csv.svg)](https://www.npmjs.org/package/json-2-csv)
7-
[![bitHound Score](https://www.bithound.io/github/mrodrig/json-2-csv/badges/score.svg)](https://www.bithound.io/github/mrodrig/json-2-csv)
7+
[![Known Vulnerabilities](https://snyk.io/test/npm/json-2-csv/badge.svg)](https://snyk.io/test/npm/json-2-csv)
88

99
This node module will convert an array of JSON documents to a CSV string.
1010
Column headings will be automatically generated based on the keys of the JSON documents. Nested documents will have a '.' appended between the keys.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "mrodrig",
33
"name": "json-2-csv",
44
"description": "A JSON to CSV and CSV to JSON converter that natively supports sub-documents and auto-generates the CSV heading.",
5-
"version": "2.2.0",
5+
"version": "2.2.1",
66
"repository": {
77
"type": "git",
88
"url": "http://github.com/mrodrig/json-2-csv.git"
@@ -24,18 +24,18 @@
2424
"csv-2-json"
2525
],
2626
"dependencies": {
27-
"underscore": "1.8.3",
28-
"doc-path": "1.2.1",
27+
"underscore": "1.9.1",
28+
"doc-path": "1.2.2",
2929
"bluebird": "3.5.1"
3030
},
3131
"devDependencies": {
32-
"mocha": "5.0.1",
32+
"mocha": "5.2.0",
3333
"istanbul": "0.4.5",
3434
"should": "13.2.1",
35-
"async": "2.6.0"
35+
"async": "2.6.1"
3636
},
3737
"engines": {
38-
"node": "*"
38+
"node": ">= 4"
3939
},
4040
"license": "MIT"
4141
}

0 commit comments

Comments
 (0)