package.json 617 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "shortid",
  3. "version": "2.2.16",
  4. "description": "Amazingly short non-sequential url-friendly unique id generator.",
  5. "main": "index.js",
  6. "keywords": [
  7. "short",
  8. "tiny",
  9. "id",
  10. "uuid",
  11. "bitly",
  12. "shorten",
  13. "mongoid",
  14. "shortid",
  15. "tinyid"
  16. ],
  17. "author": "Dylan Greene <dylang@gmail.com>",
  18. "repository": "dylang/shortid",
  19. "browser": {
  20. "./lib/random/random-byte.js": "./lib/random/random-byte-browser.js",
  21. "./lib/util/cluster-worker-id.js": "./lib/util/cluster-worker-id-browser.js"
  22. },
  23. "license": "MIT",
  24. "dependencies": {
  25. "nanoid": "^2.1.0"
  26. }
  27. }