package.json 722 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "rndm",
  3. "description": "random string generator",
  4. "version": "1.2.0",
  5. "author": {
  6. "name": "Jonathan Ong",
  7. "email": "me@jongleberry.com",
  8. "url": "http://jongleberry.com",
  9. "twitter": "https://twitter.com/jongleberry"
  10. },
  11. "license": "MIT",
  12. "devDependencies": {
  13. "mocha": "2",
  14. "istanbul": "0"
  15. },
  16. "repository": "crypto-utils/rndm",
  17. "scripts": {
  18. "test": "mocha",
  19. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
  20. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
  21. },
  22. "keywords": [
  23. "random",
  24. "number",
  25. "generator",
  26. "uid",
  27. "id"
  28. ],
  29. "files": [
  30. "index.js"
  31. ]
  32. }