package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "async",
  3. "description": "Higher-order functions and common patterns for asynchronous code",
  4. "version": "3.2.4",
  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/eslint-parser": "^7.16.5",
  23. "babel-core": "^6.26.3",
  24. "babel-minify": "^0.5.0",
  25. "babel-plugin-add-module-exports": "^1.0.4",
  26. "babel-plugin-istanbul": "^6.1.1",
  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": "^10.0.0",
  33. "benchmark": "^2.1.1",
  34. "bluebird": "^3.4.6",
  35. "browserify": "^17.0.0",
  36. "chai": "^4.2.0",
  37. "cheerio": "^0.22.0",
  38. "es6-promise": "^4.2.8",
  39. "eslint": "^8.6.0",
  40. "eslint-plugin-prefer-arrow": "^1.2.3",
  41. "fs-extra": "^10.0.0",
  42. "jsdoc": "^3.6.2",
  43. "karma": "^6.3.12",
  44. "karma-browserify": "^8.1.0",
  45. "karma-firefox-launcher": "^2.1.2",
  46. "karma-mocha": "^2.0.1",
  47. "karma-mocha-reporter": "^2.2.0",
  48. "karma-safari-launcher": "^1.0.0",
  49. "mocha": "^6.1.4",
  50. "native-promise-only": "^0.8.0-a",
  51. "nyc": "^15.1.0",
  52. "rollup": "^2.66.1",
  53. "rollup-plugin-node-resolve": "^5.2.0",
  54. "rollup-plugin-npm": "^2.0.0",
  55. "rsvp": "^4.8.5",
  56. "semver": "^7.3.5",
  57. "yargs": "^17.3.1"
  58. },
  59. "scripts": {
  60. "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert",
  61. "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js",
  62. "lint": "eslint --fix .",
  63. "mocha-browser-test": "karma start",
  64. "mocha-node-test": "mocha",
  65. "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test",
  66. "test": "npm run lint && npm run mocha-node-test"
  67. },
  68. "license": "MIT",
  69. "nyc": {
  70. "exclude": [
  71. "test"
  72. ]
  73. },
  74. "module": "dist/async.mjs"
  75. }