Comparing version 0.1.10 to 0.1.11
{ | ||
"name": "ezzy-fs", | ||
"description": "An enhancement to the basic fs library", | ||
"version": "0.1.10", | ||
"version": "0.1.11", | ||
"author": { | ||
@@ -16,3 +16,7 @@ "name": "Moises Romero", | ||
"scripts": { | ||
"test": "node ./node_modules/ezzy-testing" | ||
"coverage": "node node_modules/ezzy-testing/coverage", | ||
"pretest": "npm install", | ||
"test": "node node_modules/ezzy-testing", | ||
"prebuild": "npm install", | ||
"build": "npm run coverage" | ||
}, | ||
@@ -24,4 +28,4 @@ "dependencies": { | ||
"devDependencies": { | ||
"ezzy-testing": "^0.1.2" | ||
"ezzy-testing": "^0.1.16" | ||
} | ||
} |
@@ -1,5 +0,14 @@ | ||
# fs-plus | ||
# ezzy-fs | ||
[![Build Status](https://travis-ci.org/ezzygemini/ezzy-fs.svg?branch=master)](https://travis-ci.org/ezzygemini/ezzy-fs) | ||
[![Coverage Status](https://coveralls.io/repos/github/ezzygemini/ezzy-fs/badge.svg?branch=master)](https://coveralls.io/github/ezzygemini/ezzy-fs?branch=master) | ||
An enhancement to the basic fs library | ||
This wrapper enhances the fs module to include additional methods that return promises, rather than passing callbacks. | ||
```javascript | ||
const fs = require('ezzy-fs'); | ||
fs.readdirPromise(__dirname) | ||
.then(items => { | ||
// ... handle items | ||
}); | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17129
14