package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "run-series",
  3. "description": "Run an array of functions in series",
  4. "version": "1.1.9",
  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-series/issues"
  12. },
  13. "dependencies": {},
  14. "devDependencies": {
  15. "airtap": "^3.0.0",
  16. "standard": "*",
  17. "tape": "^5.0.1"
  18. },
  19. "homepage": "https://github.com/feross/run-series",
  20. "keywords": [
  21. "series",
  22. "async",
  23. "function",
  24. "callback",
  25. "asynchronous",
  26. "run",
  27. "array",
  28. "run series"
  29. ],
  30. "license": "MIT",
  31. "main": "index.js",
  32. "repository": {
  33. "type": "git",
  34. "url": "git://github.com/feross/run-series.git"
  35. },
  36. "scripts": {
  37. "test": "standard && npm run test-node && npm run test-browser",
  38. "test-browser": "airtap -- test/*.js",
  39. "test-browser-local": "airtap --local -- test/*.js",
  40. "test-node": "tape test/*.js"
  41. },
  42. "funding": [
  43. {
  44. "type": "github",
  45. "url": "https://github.com/sponsors/feross"
  46. },
  47. {
  48. "type": "patreon",
  49. "url": "https://www.patreon.com/feross"
  50. },
  51. {
  52. "type": "consulting",
  53. "url": "https://feross.org/support"
  54. }
  55. ]
  56. }