package.json 720 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "aproba",
  3. "version": "1.2.0",
  4. "description": "A ridiculously light-weight argument validator (now browser friendly)",
  5. "main": "index.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "dependencies": {},
  10. "devDependencies": {
  11. "standard": "^10.0.3",
  12. "tap": "^10.0.2"
  13. },
  14. "files": [
  15. "index.js"
  16. ],
  17. "scripts": {
  18. "test": "standard && tap -j3 test/*.js"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/iarna/aproba"
  23. },
  24. "keywords": [
  25. "argument",
  26. "validate"
  27. ],
  28. "author": "Rebecca Turner <me@re-becca.org>",
  29. "license": "ISC",
  30. "bugs": {
  31. "url": "https://github.com/iarna/aproba/issues"
  32. },
  33. "homepage": "https://github.com/iarna/aproba"
  34. }