package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "run-parallel",
  3. "description": "Run an array of functions in parallel",
  4. "version": "1.2.0",
  5. "author": {
  6. "name": "Feross Aboukhadijeh",
  7. "email": "feross@feross.org",
  8. "url": "https://feross.org"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/feross/run-parallel/issues"
  12. },
  13. "dependencies": {
  14. "queue-microtask": "^1.2.2"
  15. },
  16. "devDependencies": {
  17. "airtap": "^3.0.0",
  18. "standard": "*",
  19. "tape": "^5.0.1"
  20. },
  21. "homepage": "https://github.com/feross/run-parallel",
  22. "keywords": [
  23. "parallel",
  24. "async",
  25. "function",
  26. "callback",
  27. "asynchronous",
  28. "run",
  29. "array",
  30. "run parallel"
  31. ],
  32. "license": "MIT",
  33. "main": "index.js",
  34. "repository": {
  35. "type": "git",
  36. "url": "git://github.com/feross/run-parallel.git"
  37. },
  38. "scripts": {
  39. "test": "standard && npm run test-node && npm run test-browser",
  40. "test-browser": "airtap -- test/*.js",
  41. "test-browser-local": "airtap --local -- test/*.js",
  42. "test-node": "tape test/*.js"
  43. },
  44. "funding": [
  45. {
  46. "type": "github",
  47. "url": "https://github.com/sponsors/feross"
  48. },
  49. {
  50. "type": "patreon",
  51. "url": "https://www.patreon.com/feross"
  52. },
  53. {
  54. "type": "consulting",
  55. "url": "https://feross.org/support"
  56. }
  57. ]
  58. }