package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "async",
  3. "description": "Higher-order functions and common patterns for asynchronous code",
  4. "version": "3.2.3",
  5. "main": "dist/async.js",
  6. "author": "Caolan McMahon",
  7. "homepage": "https://caolan.github.io/async/",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/caolan/async.git"
  11. },
  12. "bugs": {
  13. "url": "https://github.com/caolan/async/issues"
  14. },
  15. "keywords": [
  16. "async",
  17. "callback",
  18. "module",
  19. "utility"
  20. ],
  21. "devDependencies": {
  22. "babel-core": "^6.26.3",
  23. "babel-eslint": "^8.2.6",
  24. "babel-minify": "^0.5.0",
  25. "babel-plugin-add-module-exports": "^0.2.1",
  26. "babel-plugin-istanbul": "^5.1.4",
  27. "babel-plugin-syntax-async-generators": "^6.13.0",
  28. "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
  29. "babel-preset-es2015": "^6.3.13",
  30. "babel-preset-es2017": "^6.22.0",
  31. "babel-register": "^6.26.0",
  32. "babelify": "^8.0.0",
  33. "benchmark": "^2.1.1",
  34. "bluebird": "^3.4.6",
  35. "browserify": "^16.2.3",
  36. "chai": "^4.2.0",
  37. "cheerio": "^0.22.0",
  38. "coveralls": "^3.0.4",
  39. "es6-promise": "^2.3.0",
  40. "eslint": "^6.0.1",
  41. "eslint-plugin-prefer-arrow": "^1.1.5",
  42. "fs-extra": "^0.26.7",
  43. "jsdoc": "^3.6.2",
  44. "karma": "^4.1.0",
  45. "karma-browserify": "^5.3.0",
  46. "karma-edge-launcher": "^0.4.2",
  47. "karma-firefox-launcher": "^1.1.0",
  48. "karma-junit-reporter": "^1.2.0",
  49. "karma-mocha": "^1.2.0",
  50. "karma-mocha-reporter": "^2.2.0",
  51. "karma-safari-launcher": "^1.0.0",
  52. "mocha": "^6.1.4",
  53. "mocha-junit-reporter": "^1.18.0",
  54. "native-promise-only": "^0.8.0-a",
  55. "nyc": "^14.1.1",
  56. "rollup": "^0.63.4",
  57. "rollup-plugin-node-resolve": "^2.0.0",
  58. "rollup-plugin-npm": "^2.0.0",
  59. "rsvp": "^3.0.18",
  60. "semver": "^5.5.0",
  61. "yargs": "^11.0.0"
  62. },
  63. "scripts": {
  64. "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert",
  65. "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
  66. "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js",
  67. "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js",
  68. "mocha-browser-test": "karma start",
  69. "mocha-node-test": "mocha",
  70. "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test",
  71. "test": "npm run lint && npm run mocha-node-test"
  72. },
  73. "license": "MIT",
  74. "nyc": {
  75. "exclude": [
  76. "test"
  77. ]
  78. },
  79. "module": "dist/async.mjs"
  80. }