package.json 834 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "hexoid",
  3. "version": "1.0.0",
  4. "repository": "lukeed/hexoid",
  5. "description": "A tiny (190B) and extremely fast utility to generate random IDs of fixed length",
  6. "unpkg": "dist/index.min.js",
  7. "module": "dist/index.mjs",
  8. "main": "dist/index.js",
  9. "types": "hexoid.d.ts",
  10. "license": "MIT",
  11. "author": {
  12. "name": "Luke Edwards",
  13. "email": "luke.edwards05@gmail.com",
  14. "url": "https://lukeed.com"
  15. },
  16. "engines": {
  17. "node": ">=8"
  18. },
  19. "scripts": {
  20. "build": "bundt",
  21. "pretest": "npm run build",
  22. "test": "tape -r esm test/*.js | tap-spec"
  23. },
  24. "files": [
  25. "*.d.ts",
  26. "dist"
  27. ],
  28. "keywords": [
  29. "id",
  30. "uid",
  31. "uuid",
  32. "random",
  33. "generate"
  34. ],
  35. "devDependencies": {
  36. "bundt": "1.0.0",
  37. "esm": "3.2.25",
  38. "tap-spec": "5.0.0",
  39. "tape": "4.9.1"
  40. }
  41. }