package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "path-root-regex",
  3. "description": "Regular expression for getting the root of a posix or windows filepath.",
  4. "version": "0.1.2",
  5. "homepage": "https://github.com/regexhq/path-root-regex",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "regexhq/path-root-regex",
  8. "bugs": {
  9. "url": "https://github.com/regexhq/path-root-regex/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. "detect",
  28. "expression",
  29. "file",
  30. "filepath",
  31. "match",
  32. "parse",
  33. "path",
  34. "regex",
  35. "regexp",
  36. "regular",
  37. "root",
  38. "test"
  39. ],
  40. "verb": {
  41. "run": true,
  42. "toc": false,
  43. "layout": false,
  44. "tasks": [
  45. "readme"
  46. ],
  47. "plugins": [
  48. "gulp-format-md"
  49. ],
  50. "related": {
  51. "highlight": "path-root",
  52. "list": [
  53. "parse-filepath",
  54. "is-absolute"
  55. ]
  56. },
  57. "reflinks": [
  58. "verb",
  59. "path-root"
  60. ],
  61. "lint": {
  62. "reflinks": true
  63. }
  64. }
  65. }