93023106f4179f741a59ce8f670dbe051cfc1960ef4bb598f4e8ab95e6174fcf44af9fa51bebe2428fca4549382dff6b63604529fb6c2fbd9bee40f1ae0250 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/jonschlinkert/normalize-path",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/jonschlinkert/normalize-path.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/normalize-path/issues"
  16. },
  17. "license": {
  18. "type": "MIT",
  19. "url": "https://github.com/jonschlinkert/normalize-path/blob/master/LICENSE-MIT"
  20. },
  21. "files": ["index.js"],
  22. "main": "index.js",
  23. "engines": {
  24. "node": ">=0.10.0"
  25. },
  26. "scripts": {
  27. "test": "mocha -R spec"
  28. },
  29. "devDependencies": {
  30. "benchmarked": "^0.1.1",
  31. "mocha": "*"
  32. },
  33. "keywords": [
  34. "file",
  35. "filepath",
  36. "fp",
  37. "normalize",
  38. "path",
  39. "slash",
  40. "slashes",
  41. "trailing",
  42. "unix"
  43. ]
  44. }