package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "is-posix-bracket",
  3. "description": "Returns true if the given string is a POSIX bracket expression (POSIX character class).",
  4. "version": "0.1.1",
  5. "homepage": "https://github.com/jonschlinkert/is-posix-bracket",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/is-posix-bracket",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/is-posix-bracket/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "devDependencies": {
  23. "gulp-format-md": "^0.1.7",
  24. "mocha": "^2.4.5"
  25. },
  26. "keywords": [
  27. "braces",
  28. "brackets",
  29. "character",
  30. "character-class",
  31. "class",
  32. "expression",
  33. "posix",
  34. "regex",
  35. "regexp",
  36. "regular"
  37. ],
  38. "verb": {
  39. "run": true,
  40. "toc": false,
  41. "layout": "default",
  42. "tasks": [
  43. "readme"
  44. ],
  45. "plugins": [
  46. "gulp-format-md"
  47. ],
  48. "related": {
  49. "list": [
  50. "braces",
  51. "expand-brackets",
  52. "is-extglob",
  53. "is-glob",
  54. "micromatch"
  55. ]
  56. },
  57. "reflinks": [
  58. "verb"
  59. ],
  60. "lint": {
  61. "reflinks": true
  62. }
  63. }
  64. }