package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@mrmlnc/readdir-enhanced",
  3. "version": "2.2.1",
  4. "description": "fs.readdir with sync, async, and streaming APIs + filtering, recursion, absolute paths, etc.",
  5. "keywords": [
  6. "fs",
  7. "readdir",
  8. "stream",
  9. "event",
  10. "recursive",
  11. "deep",
  12. "filter",
  13. "absolute"
  14. ],
  15. "author": {
  16. "name": "James Messinger",
  17. "url": "http://bigstickcarpet.com"
  18. },
  19. "homepage": "https://github.com/bigstickcarpet/readdir-enhanced",
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/bigstickcarpet/readdir-enhanced.git"
  23. },
  24. "license": "MIT",
  25. "main": "lib/index.js",
  26. "typings": "types.d.ts",
  27. "files": [
  28. "lib",
  29. "types.d.ts"
  30. ],
  31. "scripts": {
  32. "lint": "eslint lib test --fix",
  33. "test": "mocha && npm run lint",
  34. "cover": "istanbul cover _mocha",
  35. "upgrade": "npm-check -u",
  36. "bump": "bump --prompt --tag --push --all",
  37. "release": "npm run upgrade && npm test && npm run bump && npm publish"
  38. },
  39. "devDependencies": {
  40. "chai": "^4.1.2",
  41. "codacy-coverage": "^2.0.3",
  42. "coveralls": "^3.0.0",
  43. "del": "^3.0.0",
  44. "eslint": "^4.15.0",
  45. "eslint-config-modular": "^4.1.1",
  46. "istanbul": "^0.4.5",
  47. "mkdirp": "^0.5.1",
  48. "mocha": "^4.1.0",
  49. "npm-check": "^5.5.2",
  50. "through2": "^2.0.3",
  51. "version-bump-prompt": "^4.0.0"
  52. },
  53. "dependencies": {
  54. "call-me-maybe": "^1.0.1",
  55. "glob-to-regexp": "^0.3.0"
  56. },
  57. "engines": {
  58. "node": ">=4"
  59. }
  60. }