package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "hyperid",
  3. "version": "3.3.0",
  4. "description": "Uber-fast unique id generation, for Node.js and the browser",
  5. "main": "hyperid",
  6. "files": [
  7. "hyperid.js",
  8. "index.d.ts",
  9. "uuid-node.js",
  10. "uuid-browser.js",
  11. "test"
  12. ],
  13. "scripts": {
  14. "typescript": "tsc --project ./test/tsconfig.json",
  15. "test": "standard && tape test/test.js test/uniqueness.js test/buffer.js | tap-dot && npm run typescript",
  16. "legacy": "tape test/test.js"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/mcollina/hyperid.git"
  21. },
  22. "keywords": [
  23. "id",
  24. "generation",
  25. "fast"
  26. ],
  27. "author": "Matteo Collina <hello@matteocollina.com>",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/mcollina/hyperid/issues"
  31. },
  32. "homepage": "https://github.com/mcollina/hyperid#readme",
  33. "devDependencies": {
  34. "@napi-rs/uuid": "^0.2.0",
  35. "benchmark": "^2.1.4",
  36. "bloomfilter": "^0.0.18",
  37. "hashids": "^2.2.8",
  38. "nanoid": "^3.0.0",
  39. "nid": "^2.0.1",
  40. "pre-commit": "^1.2.2",
  41. "proxyquire": "^2.1.3",
  42. "shortid": "^2.2.16",
  43. "standard": "^17.1.0",
  44. "tap-dot": "^2.0.0",
  45. "tape": "^5.0.0",
  46. "typescript": "^5.4.5"
  47. },
  48. "dependencies": {
  49. "buffer": "^5.2.1",
  50. "uuid": "^8.3.2",
  51. "uuid-parse": "^1.1.0"
  52. },
  53. "browser": {
  54. "./uuid-node.js": "./uuid-browser.js"
  55. }
  56. }