package.json 411 B

1234567891011121314151617181920212223
  1. {
  2. "name": "uuid-parse",
  3. "version": "1.1.0",
  4. "description": "RFC4122 UUID parser",
  5. "keywords": [
  6. "uuid",
  7. "parse",
  8. "guid",
  9. "rfc4122"
  10. ],
  11. "license": "MIT",
  12. "main": "./uuid-parse.js",
  13. "devDependencies": {
  14. "mocha": "~6.0.0"
  15. },
  16. "scripts": {
  17. "test": "mocha test/test.js"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/zefferus/uuid-parse.git"
  22. }
  23. }