You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 978B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "filenamify",
  3. "version": "4.3.0",
  4. "description": "Convert a string to a valid safe filename",
  5. "license": "MIT",
  6. "repository": "sindresorhus/filenamify",
  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. "engines": {
  14. "node": ">=8"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "filenamify-path.d.ts",
  21. "filenamify-path.js",
  22. "filenamify.d.ts",
  23. "filenamify.js",
  24. "index.d.ts",
  25. "index.js"
  26. ],
  27. "exports": {
  28. ".": "./index.js",
  29. "./browser": "./filenamify.js"
  30. },
  31. "keywords": [
  32. "filename",
  33. "safe",
  34. "sanitize",
  35. "file",
  36. "name",
  37. "string",
  38. "path",
  39. "filepath",
  40. "convert",
  41. "valid",
  42. "dirname"
  43. ],
  44. "dependencies": {
  45. "filename-reserved-regex": "^2.0.0",
  46. "strip-outer": "^1.0.1",
  47. "trim-repeated": "^1.0.0"
  48. },
  49. "devDependencies": {
  50. "ava": "^1.4.1",
  51. "tsd": "^0.7.1",
  52. "xo": "^0.24.0"
  53. }
  54. }