New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

quaff

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quaff - npm Package Compare versions

Comparing version 3.0.0 to 3.1.0

4

index.js

@@ -8,3 +8,3 @@ // internal

const dsv = require('d3-dsv');
const glob = require('fast-glob');
const glob = require('tiny-glob/sync');
const parseJson = require('parse-json');

@@ -15,3 +15,3 @@ const yaml = require('js-yaml');

const cwd = path.normalize(rawPath);
const files = glob.sync(path.join(cwd, '**/*.{json,yaml,yml,csv,tsv}'));
const files = glob('**/*.{json,yaml,yml,csv,tsv}', { absolute: true, cwd });

@@ -18,0 +18,0 @@ const payload = {};

{
"name": "quaff",
"version": "3.0.0",
"version": "3.1.0",
"description": "Collect JSON/YAML/YML/CSV/TSV files from a source folder and convert them into a single object.",

@@ -29,3 +29,3 @@ "repository": "rdmurphy/quaff",

"coveralls": "^3.0.2",
"husky": "^1.1.1",
"husky": "^1.3.1",
"istanbul": "^0.4.2",

@@ -35,3 +35,3 @@ "mocha": "^5.2.0",

"precise-commits": "^1.0.2",
"prettier": "^1.14.3"
"prettier": "^1.15.3"
},

@@ -41,5 +41,5 @@ "dependencies": {

"dset": "^2.0.1",
"fast-glob": "^2.2.3",
"js-yaml": "^3.12.0",
"parse-json": "^4.0.0"
"parse-json": "^4.0.0",
"tiny-glob": "^0.2.6"
},

@@ -46,0 +46,0 @@ "prettier": {

@@ -1,4 +0,12 @@

![](http://i.imgur.com/yC80ftQ.png)
<p align="center">
<img src="https://i.imgur.com/yC80ftQ.png" width="150" height="217" alt="quaff">
<br><br>
<a href="https://www.npmjs.org/package/quaff"><img src="https://img.shields.io/npm/v/quaff.svg?style=flat" alt="npm"></a>
<a href="https://travis-ci.org/rdmurphy/quaff"><img src="https://travis-ci.org/rdmurphy/quaff.svg?branch=master" alt="travis"></a>
<a href="https://coveralls.io/github/rdmurphy/quaff?branch=master"><img src="https://coveralls.io/repos/rdmurphy/quaff/badge.svg?branch=master&service=github" alt="coveralls"></a>
<a href="https://david-dm.org/rdmurphy/quaff"><img src="https://david-dm.org/rdmurphy/quaff/status.svg" alt="dependencies"></a>
<a href="https://packagephobia.now.sh/result?p=quaff"><img src="https://packagephobia.now.sh/badge?p=quaff" alt="install size"></a>
</p>
# quaff [![Build Status](https://travis-ci.org/rdmurphy/quaff.svg?branch=master)](https://travis-ci.org/rdmurphy/quaff) [![Dependencies](https://david-dm.org/rdmurphy/quaff.svg)](https://david-dm.org/rdmurphy/quaff) [![Coverage Status](https://coveralls.io/repos/rdmurphy/quaff/badge.svg?branch=master&service=github)](https://coveralls.io/github/rdmurphy/quaff?branch=master)
# quaff

@@ -47,10 +55,4 @@ A data pipeline helper written in node that works similar to [Middleman](https://middlemanapp.com/)'s [Data Files](https://middlemanapp.com/advanced/data_files/) collector.

"mammals": {
"cats": [
"Marty",
"Sammy"
],
"dogs": [
"Snazzy",
"Cally"
],
"cats": ["Marty", "Sammy"],
"dogs": ["Snazzy", "Cally"],
"bears": [

@@ -69,8 +71,4 @@ {

"parrots": {
"alive": [
"Buzz"
],
"dead": [
"Moose"
]
"alive": ["Buzz"],
"dead": ["Moose"]
}

@@ -77,0 +75,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