package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "path-root",
  3. "description": "Get the root of a posix or windows filepath.",
  4. "version": "0.1.1",
  5. "homepage": "https://github.com/jonschlinkert/path-root",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/path-root",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/path-root/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. "dependencies": {
  23. "path-root-regex": "^0.1.0"
  24. },
  25. "devDependencies": {
  26. "gulp-format-md": "^0.1.7",
  27. "mocha": "^2.4.5"
  28. },
  29. "keywords": [
  30. "path",
  31. "root"
  32. ],
  33. "verb": {
  34. "run": true,
  35. "toc": false,
  36. "layout": "default",
  37. "tasks": [
  38. "readme"
  39. ],
  40. "plugins": [
  41. "gulp-format-md"
  42. ],
  43. "related": {
  44. "highlight": "parse-filepath",
  45. "list": [
  46. "path-root-regex",
  47. "parse-filepath",
  48. "is-absolute"
  49. ]
  50. },
  51. "reflinks": [
  52. "verb"
  53. ],
  54. "lint": {
  55. "reflinks": true
  56. }
  57. }
  58. }