package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "normalize-path",
  3. "description": "Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.",
  4. "version": "2.1.1",
  5. "homepage": "https://github.com/jonschlinkert/normalize-path",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Blaine Bublitz <blaine.bublitz@gmail.com> (https://twitter.com/BlaineBublitz)",
  9. "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)"
  10. ],
  11. "repository": "jonschlinkert/normalize-path",
  12. "bugs": {
  13. "url": "https://github.com/jonschlinkert/normalize-path/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js"
  18. ],
  19. "main": "index.js",
  20. "engines": {
  21. "node": ">=0.10.0"
  22. },
  23. "scripts": {
  24. "test": "mocha"
  25. },
  26. "dependencies": {
  27. "remove-trailing-separator": "^1.0.1"
  28. },
  29. "devDependencies": {
  30. "benchmarked": "^0.1.1",
  31. "gulp-format-md": "^0.1.11",
  32. "minimist": "^1.2.0",
  33. "mocha": "*"
  34. },
  35. "keywords": [
  36. "backslash",
  37. "file",
  38. "filepath",
  39. "fix",
  40. "forward",
  41. "fp",
  42. "fs",
  43. "normalize",
  44. "path",
  45. "slash",
  46. "slashes",
  47. "trailing",
  48. "unix",
  49. "urix"
  50. ],
  51. "verb": {
  52. "related": {
  53. "list": [
  54. "contains-path",
  55. "ends-with",
  56. "is-absolute",
  57. "is-relative",
  58. "parse-filepath",
  59. "path-ends-with",
  60. "path-segments",
  61. "rewrite-ext",
  62. "unixify"
  63. ],
  64. "description": "Other useful libraries for working with paths in node.js:"
  65. },
  66. "toc": false,
  67. "layout": "default",
  68. "tasks": [
  69. "readme"
  70. ],
  71. "plugins": [
  72. "gulp-format-md"
  73. ],
  74. "lint": {
  75. "reflinks": true
  76. }
  77. }
  78. }