package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "is-generator",
  3. "version": "1.0.3",
  4. "description": "Check whether a value is a generator or generator function",
  5. "main": "is-generator.js",
  6. "scripts": {
  7. "lint": "standard",
  8. "test-spec": "mocha -R spec --bail",
  9. "test-cov": "node --harmony node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
  10. "test": "npm run lint && npm run test-cov"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/blakeembrey/is-generator.git"
  15. },
  16. "keywords": [
  17. "generator",
  18. "generator function",
  19. "yield",
  20. "function",
  21. "await",
  22. "es6",
  23. "function*"
  24. ],
  25. "author": {
  26. "name": "Blake Embrey",
  27. "email": "hello@blakeembrey.com",
  28. "url": "http://blakeembrey.me"
  29. },
  30. "license": "MIT",
  31. "bugs": {
  32. "url": "https://github.com/blakeembrey/is-generator/issues"
  33. },
  34. "homepage": "https://github.com/blakeembrey/is-generator",
  35. "devDependencies": {
  36. "istanbul": "git://github.com/gotwarlost/istanbul#harmony",
  37. "mocha": "^3.3.0",
  38. "pre-commit": "^1.0.7",
  39. "standard": "^10.0.2"
  40. }
  41. }