package.json 990 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "tempy",
  3. "version": "1.0.1",
  4. "description": "Get a random temporary file or directory path",
  5. "license": "MIT",
  6. "repository": "sindresorhus/tempy",
  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": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "temp",
  25. "temporary",
  26. "path",
  27. "file",
  28. "directory",
  29. "folder",
  30. "tempfile",
  31. "tempdir",
  32. "tmpdir",
  33. "tmpfile",
  34. "random",
  35. "unique"
  36. ],
  37. "dependencies": {
  38. "del": "^6.0.0",
  39. "is-stream": "^2.0.0",
  40. "temp-dir": "^2.0.0",
  41. "type-fest": "^0.16.0",
  42. "unique-string": "^2.0.0"
  43. },
  44. "devDependencies": {
  45. "ava": "^2.4.0",
  46. "path-exists": "^4.0.0",
  47. "touch": "^3.1.0",
  48. "tsd": "^0.13.1",
  49. "xo": "^0.33.1"
  50. },
  51. "xo": {
  52. "rules": {
  53. "node/no-unsupported-features/node-builtins": "off"
  54. }
  55. }
  56. }