package.json 908 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "to-absolute-glob",
  3. "description": "Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.",
  4. "version": "0.1.1",
  5. "homepage": "https://github.com/jonschlinkert/to-absolute-glob",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/to-absolute-glob",
  8. "bugs": "https://github.com/jonschlinkert/to-absolute-glob/issues",
  9. "license": "MIT",
  10. "files": [
  11. "index.js"
  12. ],
  13. "main": "index.js",
  14. "engines": {
  15. "node": ">=0.10.0"
  16. },
  17. "scripts": {
  18. "test": "mocha"
  19. },
  20. "dependencies": {
  21. "extend-shallow": "^2.0.1"
  22. },
  23. "devDependencies": {
  24. "mocha": "*"
  25. },
  26. "keywords": [
  27. "resolve",
  28. "pattern",
  29. "absolute",
  30. "glob"
  31. ],
  32. "verb": {
  33. "related": {
  34. "list": [
  35. "is-glob",
  36. "is-valid-glob",
  37. "has-glob"
  38. ]
  39. }
  40. }
  41. }