package.json 570 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "slash",
  3. "version": "1.0.0",
  4. "description": "Convert Windows backslash paths to slash paths",
  5. "keywords": [
  6. "path",
  7. "seperator",
  8. "sep",
  9. "slash",
  10. "backslash",
  11. "windows",
  12. "win"
  13. ],
  14. "author": {
  15. "name": "Sindre Sorhus",
  16. "email": "sindresorhus@gmail.com",
  17. "url": "http://sindresorhus.com"
  18. },
  19. "repository": "sindresorhus/slash",
  20. "scripts": {
  21. "test": "mocha"
  22. },
  23. "devDependencies": {
  24. "mocha": "*"
  25. },
  26. "engines": {
  27. "node": ">=0.10.0"
  28. },
  29. "license": "MIT",
  30. "files": [
  31. "index.js"
  32. ]
  33. }