package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "async",
  3. "description": "Higher-order functions and common patterns for asynchronous code",
  4. "version": "2.6.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. "dependencies": {
  22. "lodash": "^4.17.14"
  23. },
  24. "devDependencies": {
  25. "babel-cli": "^6.24.0",
  26. "babel-core": "^6.26.3",
  27. "babel-plugin-add-module-exports": "^0.2.1",
  28. "babel-plugin-istanbul": "^2.0.1",
  29. "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
  30. "babel-preset-es2015": "^6.3.13",
  31. "babel-preset-es2017": "^6.22.0",
  32. "babelify": "^8.0.0",
  33. "benchmark": "^2.1.1",
  34. "bluebird": "^3.4.6",
  35. "browserify": "^16.2.2",
  36. "chai": "^4.1.2",
  37. "cheerio": "^0.22.0",
  38. "coveralls": "^3.0.1",
  39. "es6-promise": "^2.3.0",
  40. "eslint": "^2.13.1",
  41. "fs-extra": "^0.26.7",
  42. "gh-pages-deploy": "^0.5.0",
  43. "jsdoc": "^3.4.0",
  44. "karma": "^2.0.2",
  45. "karma-browserify": "^5.2.0",
  46. "karma-firefox-launcher": "^1.1.0",
  47. "karma-mocha": "^1.2.0",
  48. "karma-mocha-reporter": "^2.2.0",
  49. "mocha": "^5.2.0",
  50. "native-promise-only": "^0.8.0-a",
  51. "nyc": "^11.8.0",
  52. "rimraf": "^2.5.0",
  53. "rollup": "^0.36.3",
  54. "rollup-plugin-node-resolve": "^2.0.0",
  55. "rollup-plugin-npm": "^2.0.0",
  56. "rsvp": "^3.0.18",
  57. "semver": "^5.5.0",
  58. "uglify-js": "~2.7.3",
  59. "yargs": "^11.0.0"
  60. },
  61. "scripts": {
  62. "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert",
  63. "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
  64. "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js",
  65. "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js",
  66. "mocha-browser-test": "karma start",
  67. "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register",
  68. "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test",
  69. "test": "npm run lint && npm run mocha-node-test"
  70. },
  71. "license": "MIT",
  72. "gh-pages-deploy": {
  73. "staticpath": "docs"
  74. },
  75. "nyc": {
  76. "exclude": [
  77. "mocha_test"
  78. ]
  79. }
  80. }