package.json 961 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "glob-parent",
  3. "version": "3.1.0",
  4. "description": "Strips glob magic from a string to provide the parent directory path",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "istanbul test node_modules/mocha/bin/_mocha",
  8. "ci-test": "istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/es128/glob-parent"
  13. },
  14. "keywords": [
  15. "glob",
  16. "parent",
  17. "strip",
  18. "path",
  19. "dirname",
  20. "directory",
  21. "base",
  22. "wildcard"
  23. ],
  24. "files": [
  25. "index.js"
  26. ],
  27. "author": "Elan Shanker (https://github.com/es128)",
  28. "license": "ISC",
  29. "bugs": {
  30. "url": "https://github.com/es128/glob-parent/issues"
  31. },
  32. "homepage": "https://github.com/es128/glob-parent",
  33. "dependencies": {
  34. "is-glob": "^3.1.0",
  35. "path-dirname": "^1.0.0"
  36. },
  37. "devDependencies": {
  38. "coveralls": "^2.11.2",
  39. "istanbul": "^0.3.5",
  40. "mocha": "^2.1.0"
  41. }
  42. }