package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "glob-parent",
  3. "version": "5.1.2",
  4. "description": "Extract the non-magic parent path from a glob string.",
  5. "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
  6. "contributors": [
  7. "Elan Shanker (https://github.com/es128)",
  8. "Blaine Bublitz <blaine.bublitz@gmail.com>"
  9. ],
  10. "repository": "gulpjs/glob-parent",
  11. "license": "ISC",
  12. "engines": {
  13. "node": ">= 6"
  14. },
  15. "main": "index.js",
  16. "files": [
  17. "LICENSE",
  18. "index.js"
  19. ],
  20. "scripts": {
  21. "lint": "eslint .",
  22. "pretest": "npm run lint",
  23. "test": "nyc mocha --async-only",
  24. "azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit",
  25. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  26. },
  27. "dependencies": {
  28. "is-glob": "^4.0.1"
  29. },
  30. "devDependencies": {
  31. "coveralls": "^3.0.11",
  32. "eslint": "^2.13.1",
  33. "eslint-config-gulp": "^3.0.1",
  34. "expect": "^1.20.2",
  35. "mocha": "^6.0.2",
  36. "nyc": "^13.3.0"
  37. },
  38. "keywords": [
  39. "glob",
  40. "parent",
  41. "strip",
  42. "path",
  43. "dirname",
  44. "directory",
  45. "base",
  46. "wildcard"
  47. ]
  48. }