No Description

package.json 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "parse-filepath",
  3. "description": "Pollyfill for node.js `path.parse`, parses a filepath into an object.",
  4. "version": "1.0.2",
  5. "homepage": "https://github.com/jonschlinkert/parse-filepath",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/parse-filepath",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/parse-filepath/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.8"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "dependencies": {
  23. "is-absolute": "^1.0.0",
  24. "map-cache": "^0.2.0",
  25. "path-root": "^0.1.1"
  26. },
  27. "devDependencies": {
  28. "gulp-format-md": "^0.1.7",
  29. "mocha": "^2.2.5",
  30. "should": "^7.0.2"
  31. },
  32. "keywords": [
  33. "absolute",
  34. "basename",
  35. "dir",
  36. "directory",
  37. "dirname",
  38. "ext",
  39. "extension",
  40. "extname",
  41. "file",
  42. "filename",
  43. "filepath",
  44. "is-absolute",
  45. "name",
  46. "object",
  47. "parse",
  48. "parser",
  49. "parts",
  50. "path",
  51. "segment"
  52. ],
  53. "verb": {
  54. "run": true,
  55. "toc": false,
  56. "layout": "default",
  57. "tasks": [
  58. "readme"
  59. ],
  60. "plugins": [
  61. "gulp-format-md"
  62. ],
  63. "related": {
  64. "highlight": "global-prefix",
  65. "list": [
  66. "global-prefix",
  67. "is-absolute",
  68. "is-relative",
  69. "relative"
  70. ]
  71. },
  72. "reflinks": [
  73. "verb"
  74. ],
  75. "lint": {
  76. "reflinks": true
  77. }
  78. }
  79. }