package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "author": {
  3. "email": "robert@broofa.com",
  4. "name": "Robert Kieffer"
  5. },
  6. "bin": {
  7. "uuid": "./bin/uuid"
  8. },
  9. "bugs": {
  10. "url": "https://github.com/broofa/node-uuid/issues"
  11. },
  12. "contributors": [
  13. {
  14. "name": "AJ ONeal",
  15. "email": "coolaj86@gmail.com"
  16. },
  17. {
  18. "name": "Christoph Tavan",
  19. "email": "dev@tavan.de"
  20. }
  21. ],
  22. "dependencies": {},
  23. "description": "Rigorous implementation of RFC4122 (v1 and v4) UUIDs.",
  24. "devDependencies": {
  25. "nyc": "^2.2.0"
  26. },
  27. "directories": {},
  28. "homepage": "https://github.com/broofa/node-uuid",
  29. "installable": true,
  30. "keywords": [
  31. "guid",
  32. "rfc4122",
  33. "uuid"
  34. ],
  35. "lib": ".",
  36. "licenses": [
  37. {
  38. "type": "MIT",
  39. "url": "https://raw.github.com/broofa/node-uuid/master/LICENSE.md"
  40. }
  41. ],
  42. "main": "./uuid.js",
  43. "maintainers": [
  44. {
  45. "name": "broofa",
  46. "email": "robert@broofa.com"
  47. }
  48. ],
  49. "name": "node-uuid",
  50. "optionalDependencies": {},
  51. "repository": {
  52. "type": "git",
  53. "url": "https://github.com/broofa/node-uuid.git"
  54. },
  55. "scripts": {
  56. "coverage": "nyc npm test && nyc report",
  57. "test": "node test/test.js"
  58. },
  59. "url": "http://github.com/broofa/node-uuid",
  60. "version": "1.4.7"
  61. }