package.json 821 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "p-cancelable",
  3. "version": "1.1.0",
  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": ">=6"
  14. },
  15. "scripts": {
  16. "test": "xo && ava && tsd-check"
  17. },
  18. "files": [
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "keywords": [
  23. "promise",
  24. "cancelable",
  25. "cancel",
  26. "canceled",
  27. "canceling",
  28. "cancellable",
  29. "cancellation",
  30. "abort",
  31. "abortable",
  32. "aborting",
  33. "cleanup",
  34. "task",
  35. "token",
  36. "async",
  37. "function",
  38. "await",
  39. "promises",
  40. "bluebird"
  41. ],
  42. "devDependencies": {
  43. "ava": "^1.3.1",
  44. "delay": "^4.1.0",
  45. "promise.prototype.finally": "^3.1.0",
  46. "tsd-check": "^0.3.0",
  47. "xo": "^0.24.0"
  48. }
  49. }