package.json 512 B

12345678910111213141516171819202122
  1. {
  2. "name": "has-binary2",
  3. "version": "1.0.3",
  4. "description": "A function that takes anything in javascript and returns true if its argument contains binary data.",
  5. "dependencies": {
  6. "isarray": "2.0.1"
  7. },
  8. "devDependencies": {
  9. "better-assert": "^1.0.2",
  10. "mocha": "^3.2.0",
  11. "semistandard": "^9.2.1"
  12. },
  13. "scripts": {
  14. "checkstyle": "semistandard",
  15. "test": "npm run checkstyle && mocha --bail"
  16. },
  17. "files": [
  18. "index.js"
  19. ],
  20. "author": "Kevin Roark",
  21. "license": "MIT"
  22. }