package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "call-me-maybe",
  3. "version": "1.0.2",
  4. "description": "Let your JS API users either give you a callback or receive a promise",
  5. "main": "src/maybe.js",
  6. "files": [
  7. "src"
  8. ],
  9. "devDependencies": {
  10. "@commitlint/config-conventional": "^17.1.0",
  11. "browserify": "^17.0.0",
  12. "commitlint": "^17.1.2",
  13. "husky": "^7.0.0",
  14. "is-ci": "^3.0.1",
  15. "karma": "^6.4.1",
  16. "karma-browserify": "^8.1.0",
  17. "karma-browserstack-launcher": "^1.6.0",
  18. "karma-mocha": "^2.0.1",
  19. "mocha": "^2.3.2",
  20. "promise": "^7.0.4",
  21. "semantic-release": "^19.0.5"
  22. },
  23. "scripts": {
  24. "test": "mocha",
  25. "prepare": "is-ci || husky install",
  26. "test-browsers": "karma start"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git+https://github.com/limulus/call-me-maybe.git"
  31. },
  32. "keywords": [
  33. "promise",
  34. "callback",
  35. "denodeify",
  36. "promisify",
  37. "carlyraejepsen"
  38. ],
  39. "author": "Eric McCarthy <eric@limulus.net> (http://www.limulus.net/)",
  40. "license": "MIT",
  41. "bugs": {
  42. "url": "https://github.com/limulus/call-me-maybe/issues"
  43. },
  44. "homepage": "https://github.com/limulus/call-me-maybe#readme"
  45. }