package.json 576 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "is-promise",
  3. "version": "4.0.0",
  4. "description": "Test whether an object looks like a promises-a+ promise",
  5. "main": "./index.js",
  6. "scripts": {
  7. "test": "node test"
  8. },
  9. "files": [
  10. "index.js",
  11. "index.mjs",
  12. "index.d.ts"
  13. ],
  14. "exports": {
  15. ".": [
  16. {
  17. "import": "./index.mjs",
  18. "require": "./index.js",
  19. "default": "./index.js"
  20. },
  21. "./index.js"
  22. ]
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/then/is-promise.git"
  27. },
  28. "author": "ForbesLindesay",
  29. "license": "MIT"
  30. }