package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "is-negated-glob",
  3. "description": "Returns an object with a `negated` boolean and the `!` stripped from negation patterns. Also respects extglobs.",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/jonschlinkert/is-negated-glob",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/is-negated-glob",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/is-negated-glob/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js",
  14. "LICENSE",
  15. "README.md"
  16. ],
  17. "main": "index.js",
  18. "engines": {
  19. "node": ">=0.10.0"
  20. },
  21. "scripts": {
  22. "test": "mocha"
  23. },
  24. "devDependencies": {
  25. "gulp-format-md": "^0.1.10",
  26. "mocha": "^3.0.2"
  27. },
  28. "keywords": [
  29. "extglob",
  30. "glob",
  31. "inverse",
  32. "inverted",
  33. "is",
  34. "is-glob",
  35. "match",
  36. "micromatch",
  37. "negate",
  38. "negated",
  39. "negation",
  40. "negative",
  41. "pattern",
  42. "test"
  43. ],
  44. "verb": {
  45. "toc": false,
  46. "layout": "default",
  47. "tasks": [
  48. "readme"
  49. ],
  50. "plugins": [
  51. "gulp-format-md"
  52. ],
  53. "related": {
  54. "list": [
  55. "is-extglob",
  56. "is-glob",
  57. "to-absolute-glob"
  58. ]
  59. },
  60. "reflinks": [
  61. "verb",
  62. "verb-generate-readme"
  63. ],
  64. "lint": {
  65. "reflinks": true
  66. }
  67. }
  68. }