package.json 677 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "is-class-hotfix",
  3. "version": "0.0.6",
  4. "description": "Check if function is an ES6 class.",
  5. "main": "is-class.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "test": "tape test/*.js"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/miguelmota/is-class"
  15. },
  16. "keywords": [
  17. "predicate",
  18. "function",
  19. "class",
  20. "es6"
  21. ],
  22. "author": "Miguel Mota <hello@miguelmota.com> (http://www.miguelmota.com/)",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/miguelmota/is-class/issues"
  26. },
  27. "homepage": "https://github.com/miguelmota/is-class",
  28. "devDependencies": {
  29. "tape": "^3.0.3"
  30. }
  31. }