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.

44 lines
716 B

  1. {
  2. "name": "unique-string",
  3. "version": "1.0.0",
  4. "description": "Generate a unique random string",
  5. "license": "MIT",
  6. "repository": "sindresorhus/unique-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. "unique",
  23. "string",
  24. "random",
  25. "uniq",
  26. "str",
  27. "rand",
  28. "text",
  29. "id",
  30. "identifier",
  31. "slug",
  32. "hex"
  33. ],
  34. "dependencies": {
  35. "crypto-random-string": "^1.0.0"
  36. },
  37. "devDependencies": {
  38. "ava": "*",
  39. "xo": "*"
  40. },
  41. "xo": {
  42. "esnext": true
  43. }
  44. }