package.json 740 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "aproba",
  3. "version": "2.0.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": "^11.0.1",
  12. "tap": "^12.0.1"
  13. },
  14. "files": [
  15. "index.js"
  16. ],
  17. "scripts": {
  18. "pretest": "standard",
  19. "test": "tap --100 -J test/*.js"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/iarna/aproba"
  24. },
  25. "keywords": [
  26. "argument",
  27. "validate"
  28. ],
  29. "author": "Rebecca Turner <me@re-becca.org>",
  30. "license": "ISC",
  31. "bugs": {
  32. "url": "https://github.com/iarna/aproba/issues"
  33. },
  34. "homepage": "https://github.com/iarna/aproba"
  35. }