package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "unique-slug",
  3. "version": "5.0.0",
  4. "description": "Generate a unique character string suitible for use in files and URLs.",
  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. "keywords": [],
  17. "author": "GitHub Inc.",
  18. "license": "ISC",
  19. "devDependencies": {
  20. "@npmcli/eslint-config": "^5.0.0",
  21. "@npmcli/template-oss": "4.23.3",
  22. "tap": "^16.3.0"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/npm/unique-slug.git"
  27. },
  28. "dependencies": {
  29. "imurmurhash": "^0.1.4"
  30. },
  31. "files": [
  32. "bin/",
  33. "lib/"
  34. ],
  35. "engines": {
  36. "node": "^18.17.0 || >=20.5.0"
  37. },
  38. "templateOSS": {
  39. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  40. "version": "4.23.3",
  41. "publish": true
  42. },
  43. "tap": {
  44. "nyc-arg": [
  45. "--exclude",
  46. "tap-snapshots/**"
  47. ]
  48. }
  49. }