설명 없음

package.json 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "posix-character-classes",
  3. "description": "POSIX character classes for creating regular expressions.",
  4. "version": "0.1.1",
  5. "homepage": "https://github.com/jonschlinkert/posix-character-classes",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/posix-character-classes",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/posix-character-classes/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.12",
  24. "mocha": "^3.2.0"
  25. },
  26. "keywords": [
  27. "character",
  28. "classes",
  29. "posix"
  30. ],
  31. "verb": {
  32. "toc": false,
  33. "layout": "default",
  34. "tasks": [
  35. "readme"
  36. ],
  37. "plugins": [
  38. "gulp-format-md"
  39. ],
  40. "reflinks": [
  41. "verb",
  42. "verb-generate-readme"
  43. ],
  44. "lint": {
  45. "reflinks": true
  46. },
  47. "related-list": [
  48. "micromatch",
  49. "nanomatch",
  50. "extglob",
  51. "expand-brackets"
  52. ]
  53. }
  54. }