package.json 716 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "slash",
  3. "version": "5.1.0",
  4. "description": "Convert Windows backslash paths to slash paths",
  5. "license": "MIT",
  6. "repository": "sindresorhus/slash",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "type": "module",
  14. "exports": "./index.js",
  15. "types": "./index.d.ts",
  16. "engines": {
  17. "node": ">=14.16"
  18. },
  19. "scripts": {
  20. "test": "xo && ava && tsd"
  21. },
  22. "files": [
  23. "index.js",
  24. "index.d.ts"
  25. ],
  26. "keywords": [
  27. "path",
  28. "seperator",
  29. "slash",
  30. "backslash",
  31. "windows",
  32. "convert"
  33. ],
  34. "devDependencies": {
  35. "ava": "^5.2.0",
  36. "tsd": "^0.28.1",
  37. "xo": "^0.54.2"
  38. }
  39. }