package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. {
  2. "name": "ambi",
  3. "version": "2.5.0",
  4. "description": "Execute a function ambidextrously (normalizes the differences between synchronous and asynchronous functions). Useful for treating synchronous functions as asynchronous functions (like supporting both synchronous and asynchronous event definitions automatically).",
  5. "homepage": "https://github.com/bevry/ambi",
  6. "license": "MIT",
  7. "keywords": [
  8. "sync",
  9. "async",
  10. "fire",
  11. "exec",
  12. "execute",
  13. "ambidextrous",
  14. "flow"
  15. ],
  16. "badges": {
  17. "list": [
  18. "travisci",
  19. "npmversion",
  20. "npmdownloads",
  21. "daviddm",
  22. "daviddmdev",
  23. "---",
  24. "slackin",
  25. "patreon",
  26. "gratipay",
  27. "flattr",
  28. "paypal",
  29. "bitcoin",
  30. "wishlist"
  31. ],
  32. "config": {
  33. "patreonUsername": "bevry",
  34. "gratipayUsername": "bevry",
  35. "flattrUsername": "balupton",
  36. "paypalURL": "https://bevry.me/paypal",
  37. "bitcoinURL": "https://bevry.me/bitcoin",
  38. "wishlistURL": "https://bevry.me/wishlist",
  39. "slackinURL": "https://slack.bevry.me"
  40. }
  41. },
  42. "author": "2013+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me), 2011-2012 Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
  43. "maintainers": [
  44. "Benjamin Lupton <b@lupton.cc> (http://balupton.com)"
  45. ],
  46. "contributors": [
  47. "Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
  48. "Sean Fridman <mail@seanfridman.com> (http://seanfridman.com)",
  49. "Benjamin Lupton (https://balupton.com)"
  50. ],
  51. "bugs": {
  52. "url": "https://github.com/bevry/ambi/issues"
  53. },
  54. "repository": {
  55. "type": "git",
  56. "url": "http://github.com/bevry/ambi.git"
  57. },
  58. "engines": {
  59. "node": ">=0.12"
  60. },
  61. "editions": [
  62. {
  63. "description": "Source + ESNext + Require",
  64. "entry": "source/index.js",
  65. "directory": "source",
  66. "syntaxes": [
  67. "javascript",
  68. "esnext",
  69. "require",
  70. "const",
  71. "let",
  72. "rest",
  73. "spread"
  74. ]
  75. },
  76. {
  77. "description": "Babel Compiled + ES2015 + Require",
  78. "entry": "es2015/index.js",
  79. "directory": "es2015",
  80. "syntaxes": [
  81. "javascript",
  82. "es2015",
  83. "require"
  84. ]
  85. }
  86. ],
  87. "main": "index.js",
  88. "browser": "es2015/index.js",
  89. "scripts": {
  90. "setup": "npm install",
  91. "clean": "rm -Rf ./docs ./es2015",
  92. "compile": "npm run compile:es2015",
  93. "compile:es2015": "babel ./source --out-dir ./es2015 --presets es2015",
  94. "meta": "npm run meta:projectz",
  95. "meta:projectz": "projectz compile",
  96. "prepare": "npm run compile && npm run test && npm run meta",
  97. "release": "npm run prepare && npm run release:publish && npm run release:tag && npm run release:push",
  98. "release:publish": "npm publish",
  99. "release:tag": "git tag v$npm_package_version -a",
  100. "release:push": "git push origin master && git push origin --tags",
  101. "pretest": "npm run test:eslint",
  102. "test:eslint": "eslint ./source",
  103. "test": "node --harmony -e \"require('editions').requirePackage(process.cwd(), require, 'test.js')\""
  104. },
  105. "dependencies": {
  106. "editions": "^1.1.1",
  107. "typechecker": "^4.3.0"
  108. },
  109. "devDependencies": {
  110. "assert-helpers": "^4.2.0",
  111. "babel-cli": "^6.8.0",
  112. "babel-preset-es2015": "^6.6.0",
  113. "eslint": "^2.10.0",
  114. "joe": "^1.6.0",
  115. "joe-reporter-console": "^1.2.1",
  116. "projectz": "^1.1.5"
  117. },
  118. "__npminstall_done": true,
  119. "_from": "ambi@2.5.0",
  120. "_resolved": "https://registry.npmmirror.com/ambi/-/ambi-2.5.0.tgz"
  121. }