package.json 688 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "slash",
  3. "version": "4.0.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. "engines": {
  16. "node": ">=12"
  17. },
  18. "scripts": {
  19. "test": "xo && ava && tsd"
  20. },
  21. "files": [
  22. "index.js",
  23. "index.d.ts"
  24. ],
  25. "keywords": [
  26. "path",
  27. "seperator",
  28. "slash",
  29. "backslash",
  30. "windows",
  31. "convert"
  32. ],
  33. "devDependencies": {
  34. "ava": "^3.15.0",
  35. "tsd": "^0.14.0",
  36. "xo": "^0.38.2"
  37. }
  38. }