package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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": "2.0.2",
  5. "homepage": "https://github.com/jonschlinkert/to-absolute-glob",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Blaine Bublitz <blaine.bublitz@gmail.com> (https://twitter.com/BlaineBublitz)",
  9. "Brian Woodward <brian.woodward@gmail.com> (https://github.com/doowb)",
  10. "Erik Kemperman (https://github.com/erikkemperman)",
  11. "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)"
  12. ],
  13. "repository": "jonschlinkert/to-absolute-glob",
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/to-absolute-glob/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "index.js"
  20. ],
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha"
  27. },
  28. "dependencies": {
  29. "is-absolute": "^1.0.0",
  30. "is-negated-glob": "^1.0.0"
  31. },
  32. "devDependencies": {
  33. "gulp-format-md": "^0.1.11",
  34. "mocha": "^3.0.2"
  35. },
  36. "keywords": [
  37. "absolute",
  38. "file",
  39. "filepath",
  40. "glob",
  41. "negate",
  42. "negative",
  43. "path",
  44. "pattern",
  45. "resolve",
  46. "to"
  47. ],
  48. "verb": {
  49. "toc": false,
  50. "layout": "default",
  51. "tasks": [
  52. "readme"
  53. ],
  54. "plugins": [
  55. "gulp-format-md"
  56. ],
  57. "lint": {
  58. "reflinks": true
  59. },
  60. "related": {
  61. "list": [
  62. "has-glob",
  63. "is-glob",
  64. "is-valid-glob"
  65. ]
  66. },
  67. "reflinks": [
  68. "verb",
  69. "verb-generate-readme"
  70. ]
  71. }
  72. }