package.json 539 B

1234567891011121314151617181920212223
  1. {
  2. "name": "option",
  3. "version": "0.2.4",
  4. "author": "Michael Williamson <mike@zwobble.org>",
  5. "description": "The option type, also known as the maybe type, for JavaScript",
  6. "license": "BSD-2-Clause",
  7. "scripts": {
  8. "test": "nodeunit test"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/mwilliamson/node-options.git"
  13. },
  14. "dependencies": {
  15. },
  16. "devDependencies": {
  17. "nodeunit": "latest"
  18. },
  19. "keywords": [
  20. "option",
  21. "maybe"
  22. ]
  23. }