package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "await-first",
  3. "version": "1.0.0",
  4. "description": "Wait the first event in a set of event emitters and event pairs, then clean up after itself.",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "autod": "autod",
  11. "pkgfiles": "egg-bin pkgfiles --check",
  12. "test": "npm run lint && npm run test-local",
  13. "test-local": "egg-bin test",
  14. "cov": "TEST_TIMEOUT=5000 egg-bin cov",
  15. "lint": "eslint . --ext .js",
  16. "ci": "npm run autod -- --check && npm run pkgfiles && npm run lint && npm run cov"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/node-modules/await-first.git"
  21. },
  22. "keywords": [
  23. "ee-first",
  24. "await"
  25. ],
  26. "author": "gxcsoccer <gxcsoccer@126.com>",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/node-modules/await-first/issues"
  30. },
  31. "homepage": "https://github.com/node-modules/await-first#readme",
  32. "dependencies": {
  33. "ee-first": "^1.1.1"
  34. },
  35. "devDependencies": {
  36. "autod": "^3.0.1",
  37. "egg-bin": "^4.3.5",
  38. "egg-ci": "^1.8.0",
  39. "eslint": "^4.11.0",
  40. "eslint-config-egg": "^5.1.1",
  41. "mm": "^2.2.0"
  42. },
  43. "ci": {
  44. "version": "6, 8, 9"
  45. },
  46. "engines": {
  47. "node": ">= 6.0.0"
  48. }
  49. }