package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "cls-bluebird",
  3. "version": "2.1.0",
  4. "description": "Make bluebird work with the continuation-local-storage module.",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "test": "npm run jshint && npm run test-all",
  8. "test-all": "npm run test-bluebird2 && npm run test-bluebird3",
  9. "test-bluebird2": "BLUEBIRD_VERSION=2 npm run test-main",
  10. "test-bluebird3": "BLUEBIRD_VERSION=3 npm run test-main",
  11. "test-main": "mocha 'test/**/*.test.js'",
  12. "jshint": "jshint lib test",
  13. "cover": "npm run cover-main && rm -rf coverage",
  14. "coveralls": "npm run cover-main && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
  15. "cover-main": "COVERAGE=true BLUEBIRD_VERSION=3 istanbul cover _mocha --report lcovonly -- -R spec 'test/**/*.test.js'",
  16. "travis": "bin/travis.sh"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/TimBeyer/cls-bluebird.git"
  21. },
  22. "keywords": [
  23. "continuation-local-storage",
  24. "cls",
  25. "bluebird",
  26. "continuation",
  27. "local",
  28. "storage",
  29. "promise",
  30. "promises",
  31. "async",
  32. "thread",
  33. "glue",
  34. "baling-wire",
  35. "patch"
  36. ],
  37. "author": "Tim Beyer <tim.beyer@gmail.com>",
  38. "license": "BSD-2-Clause",
  39. "bugs": {
  40. "url": "https://github.com/TimBeyer/cls-bluebird/issues"
  41. },
  42. "dependencies": {
  43. "shimmer": "^1.1.0",
  44. "is-bluebird": "^1.0.2"
  45. },
  46. "devDependencies": {
  47. "mocha": "^4.0.1",
  48. "chai": "^4.1.2",
  49. "jshint": "^2.9.5",
  50. "istanbul": "^0.4.5",
  51. "coveralls": "^3.0.0",
  52. "continuation-local-storage": "^3.2.1",
  53. "bluebird": "^2.10.2",
  54. "bluebird2": "^3.0.0",
  55. "bluebird3": "^3.1.1",
  56. "lodash": "^4.17.4"
  57. }
  58. }