package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "randomatic",
  3. "description": "Generate randomized strings of a specified length using simple character sequences. The original generate-password.",
  4. "version": "3.1.1",
  5. "homepage": "https://github.com/jonschlinkert/randomatic",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Bogdan Chadkin (https://github.com/TrySound)",
  9. "Dragos Fotescu (http://dragosfotescu.com)",
  10. "Faiz ul haque (http://www.10pearls.com)",
  11. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  12. "Michael Rhodes (http://michaelrhod.es)",
  13. "Paul Miller (https://paulmillr.com)",
  14. "Rouven Weßling (www.rouvenwessling.de)",
  15. "Sun Knudsen (https://sunknudsen.com)"
  16. ],
  17. "repository": "jonschlinkert/randomatic",
  18. "bugs": {
  19. "url": "https://github.com/jonschlinkert/randomatic/issues"
  20. },
  21. "license": "MIT",
  22. "files": [
  23. "index.js"
  24. ],
  25. "main": "index.js",
  26. "engines": {
  27. "node": ">= 0.10.0"
  28. },
  29. "scripts": {
  30. "test": "mocha"
  31. },
  32. "dependencies": {
  33. "is-number": "^4.0.0",
  34. "kind-of": "^6.0.0",
  35. "math-random": "^1.0.1"
  36. },
  37. "devDependencies": {
  38. "ansi-bold": "^0.1.1",
  39. "benchmarked": "^1.1.1",
  40. "glob": "^7.1.2",
  41. "gulp-format-md": "^0.1.12",
  42. "mocha": "^3.4.2"
  43. },
  44. "keywords": [
  45. "alpha",
  46. "alpha-numeric",
  47. "alphanumeric",
  48. "characters",
  49. "chars",
  50. "generate",
  51. "generate-password",
  52. "numeric",
  53. "password",
  54. "rand",
  55. "random",
  56. "randomatic",
  57. "randomize",
  58. "randomized"
  59. ],
  60. "verb": {
  61. "toc": false,
  62. "layout": "default",
  63. "tasks": [
  64. "readme"
  65. ],
  66. "plugins": [
  67. "gulp-format-md"
  68. ],
  69. "related": {
  70. "list": [
  71. "pad-left",
  72. "pad-right",
  73. "repeat-string"
  74. ]
  75. },
  76. "lint": {
  77. "reflinks": true
  78. }
  79. }
  80. }