UNPKG

readdir

Version:

Reads a directory and return results with the ability to use Ant style file match patterns

48 lines (47 loc) 1.24 kB
{ "name": "readdir", "description": "Reads a directory and return results with the ability to use Ant style file match patterns ", "version": "1.0.2", "author": "Steve King <steve@mydev.co>", "contributors": [ { "name": "Steve King", "email": "steve@mydev.co" } ], "scripts": { "test": "jest", "clean": "rimraf ./dist", "build": "tsc --project tsconfig.publish.json", "preversion": "yarn run clean && yarn run build && yarn test", "postversion": "npm publish --access=public && git push && git push --tags && yarn clean" }, "dependencies": { "@kwsites/file-exists": "^1.0.0", "@kwsites/math-sum": "^1.0.0" }, "devDependencies": { "@babel/core": "^7.8.4", "@babel/preset-env": "^7.8.4", "@babel/preset-typescript": "^7.8.3", "@types/jest": "^24.0.0", "@types/node": "^12.0.0", "babel-jest": "^25.1.0", "jest": "^25.1.0", "rimraf": "^3.0.1", "typescript": "~3.7.2" }, "keywords": [ "directory", "fs" ], "repository": "git://github.com/steveukx/readdir.js", "main": "dist/index.js", "types": "dist/index.d.ts", "license": "MIT", "files": [ "dist/**/*.js", "dist/**/*.map", "dist/**/*.d.ts" ] }