package.json 756 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "p-cancelable",
  3. "version": "0.4.1",
  4. "description": "Create a promise that can be canceled",
  5. "license": "MIT",
  6. "repository": "sindresorhus/p-cancelable",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "promise",
  23. "cancelable",
  24. "cancel",
  25. "canceled",
  26. "canceling",
  27. "cancellable",
  28. "cancellation",
  29. "abort",
  30. "abortable",
  31. "aborting",
  32. "cleanup",
  33. "task",
  34. "token",
  35. "async",
  36. "function",
  37. "await",
  38. "promises",
  39. "bluebird"
  40. ],
  41. "devDependencies": {
  42. "ava": "*",
  43. "delay": "^2.0.0",
  44. "promise.prototype.finally": "^3.1.0",
  45. "xo": "*"
  46. }
  47. }