package.json 714 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "crypto-random-string",
  3. "version": "1.0.0",
  4. "description": "Generate a cryptographically strong random string",
  5. "license": "MIT",
  6. "repository": "sindresorhus/crypto-random-string",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "random",
  23. "string",
  24. "str",
  25. "rand",
  26. "text",
  27. "id",
  28. "identifier",
  29. "slug",
  30. "salt",
  31. "crypto",
  32. "strong",
  33. "secure",
  34. "hex"
  35. ],
  36. "devDependencies": {
  37. "ava": "*",
  38. "xo": "*"
  39. },
  40. "xo": {
  41. "esnext": true
  42. }
  43. }