package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "neo-async",
  3. "version": "2.6.2",
  4. "description": "Neo-Async is a drop-in replacement for Async, it almost fully covers its functionality and runs faster ",
  5. "main": "async.js",
  6. "license": "MIT",
  7. "keywords": [
  8. "async",
  9. "util"
  10. ],
  11. "repository": {
  12. "type": "git",
  13. "url": "git@github.com:suguru03/neo-async.git"
  14. },
  15. "homepage": "https://github.com/suguru03/neo-async",
  16. "dependencies": {},
  17. "devDependencies": {
  18. "aigle": "^1.14.0",
  19. "async": "^2.6.0",
  20. "benchmark": "^2.1.1",
  21. "bluebird": "^3.5.1",
  22. "codecov.io": "^0.1.6",
  23. "fs-extra": "^4.0.2",
  24. "func-comparator": "^0.7.2",
  25. "gulp": "^4.0.2",
  26. "gulp-bump": "^2.8.0",
  27. "gulp-exit": "0.0.2",
  28. "gulp-git": "^2.4.2",
  29. "gulp-jscs": "^4.0.0",
  30. "gulp-mocha": "^4.2.0",
  31. "gulp-tag-version": "^1.3.0",
  32. "gulp-util": "^3.0.7",
  33. "husky": "^1.2.0",
  34. "istanbul": "^0.4.3",
  35. "jsdoc": "^3.5.5",
  36. "jshint": "^2.9.5",
  37. "lint-staged": "^8.1.0",
  38. "lodash": "^4.16.6",
  39. "minimist": "^1.2.0",
  40. "mocha": "^3.5.3",
  41. "mocha-parallel-executor": "^0.3.0",
  42. "mocha.parallel": "^0.15.3",
  43. "prettier": "^1.15.2",
  44. "require-dir": "^0.3.0"
  45. },
  46. "lint-staged": {
  47. "*.{js,ts}": [
  48. "prettier --write",
  49. "git add"
  50. ]
  51. },
  52. "prettier": {
  53. "printWidth": 100,
  54. "singleQuote": true
  55. },
  56. "browser": "async.min.js"
  57. }