package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "unique-filename",
  3. "version": "4.0.0",
  4. "description": "Generate a unique filename for use in temporary directories or caches.",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "test": "tap",
  8. "lint": "npm run eslint",
  9. "postlint": "template-oss-check",
  10. "template-oss-apply": "template-oss-apply --force",
  11. "lintfix": "npm run eslint -- --fix",
  12. "snap": "tap",
  13. "posttest": "npm run lint",
  14. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/npm/unique-filename.git"
  19. },
  20. "keywords": [],
  21. "author": "GitHub Inc.",
  22. "license": "ISC",
  23. "bugs": {
  24. "url": "https://github.com/iarna/unique-filename/issues"
  25. },
  26. "homepage": "https://github.com/iarna/unique-filename",
  27. "devDependencies": {
  28. "@npmcli/eslint-config": "^5.0.0",
  29. "@npmcli/template-oss": "4.23.3",
  30. "tap": "^16.3.0"
  31. },
  32. "dependencies": {
  33. "unique-slug": "^5.0.0"
  34. },
  35. "files": [
  36. "bin/",
  37. "lib/"
  38. ],
  39. "engines": {
  40. "node": "^18.17.0 || >=20.5.0"
  41. },
  42. "templateOSS": {
  43. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  44. "version": "4.23.3",
  45. "publish": true
  46. },
  47. "tap": {
  48. "nyc-arg": [
  49. "--exclude",
  50. "tap-snapshots/**"
  51. ]
  52. }
  53. }