package.json 869 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "randombytes",
  3. "version": "2.1.0",
  4. "description": "random bytes from browserify stand alone",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "standard && node test.js | tspec",
  8. "phantom": "zuul --phantom -- test.js",
  9. "local": "zuul --local --no-coverage -- test.js"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git@github.com:crypto-browserify/randombytes.git"
  14. },
  15. "keywords": [
  16. "crypto",
  17. "random"
  18. ],
  19. "author": "",
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/crypto-browserify/randombytes/issues"
  23. },
  24. "homepage": "https://github.com/crypto-browserify/randombytes",
  25. "browser": "browser.js",
  26. "devDependencies": {
  27. "phantomjs": "^1.9.9",
  28. "standard": "^10.0.2",
  29. "tap-spec": "^2.1.2",
  30. "tape": "^4.6.3",
  31. "zuul": "^3.7.2"
  32. },
  33. "dependencies": {
  34. "safe-buffer": "^5.1.0"
  35. }
  36. }