web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
714 B

  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. }