package.json 939 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "random-bytes",
  3. "description": "URL and cookie safe UIDs",
  4. "version": "1.0.0",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>"
  7. ],
  8. "license": "MIT",
  9. "repository": "crypto-utils/random-bytes",
  10. "devDependencies": {
  11. "bluebird": "3.1.1",
  12. "istanbul": "0.4.2",
  13. "mocha": "2.3.4",
  14. "proxyquire": "1.2.0"
  15. },
  16. "files": [
  17. "LICENSE",
  18. "HISTORY.md",
  19. "README.md",
  20. "index.js"
  21. ],
  22. "engines": {
  23. "node": ">= 0.8"
  24. },
  25. "scripts": {
  26. "test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/",
  27. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --trace-deprecation --reporter dot --check-leaks test/",
  28. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --trace-deprecation --reporter spec --check-leaks test/"
  29. },
  30. "keywords": [
  31. "bytes",
  32. "generator",
  33. "random",
  34. "safe"
  35. ]
  36. }