package.json 934 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "standard-as-callback",
  3. "version": "2.1.0",
  4. "description": "A performant and standard (Bluebird) library that registers a node-style callback on a promise",
  5. "main": "built/index.js",
  6. "types": "built/index.d.ts",
  7. "directories": {
  8. "lib": "built"
  9. },
  10. "files": [
  11. "built/"
  12. ],
  13. "scripts": {
  14. "build": "rm -rf built && tsc",
  15. "test": "npm run build && mocha",
  16. "prepublishOnly": "npm test"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/luin/asCallback.git"
  21. },
  22. "keywords": [
  23. "ascallback",
  24. "nodeify",
  25. "promise",
  26. "bluebird"
  27. ],
  28. "author": "luin <i@zihua.li>",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/luin/asCallback/issues"
  32. },
  33. "homepage": "https://github.com/luin/asCallback#readme",
  34. "devDependencies": {
  35. "mocha": "^8.3.2",
  36. "promise-timeout": "^1.3.0",
  37. "sinon": "^9.2.4",
  38. "typescript": "^4.2.3"
  39. }
  40. }