package.json 983 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "co",
  3. "version": "4.6.0",
  4. "description": "generator async control flow goodness",
  5. "keywords": [
  6. "async",
  7. "flow",
  8. "generator",
  9. "coro",
  10. "coroutine"
  11. ],
  12. "devDependencies": {
  13. "browserify": "^10.0.0",
  14. "istanbul-harmony": "0",
  15. "mocha": "^2.0.0",
  16. "mz": "^1.0.2"
  17. },
  18. "scripts": {
  19. "test": "mocha --harmony",
  20. "test-cov": "node --harmony node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter dot",
  21. "test-travis": "node --harmony node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --reporter dot",
  22. "prepublish": "npm run browserify",
  23. "browserify": "browserify index.js -o ./co-browser.js -s co"
  24. },
  25. "files": [
  26. "index.js"
  27. ],
  28. "license": "MIT",
  29. "repository": "tj/co",
  30. "engines": {
  31. "iojs": ">= 1.0.0",
  32. "node": ">= 0.12.0"
  33. },
  34. "__npminstall_done": true,
  35. "_from": "co@4.6.0",
  36. "_resolved": "https://registry.npmmirror.com/co/-/co-4.6.0.tgz"
  37. }