package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "fastparallel",
  3. "version": "2.4.1",
  4. "description": "Zero-overhead asynchronous parallel/each/map function call",
  5. "main": "parallel.js",
  6. "scripts": {
  7. "lint": "standard",
  8. "test": "tape test.js | faucet",
  9. "coverage": "nyc --reporter=lcov tape test.js; cat coverage/lcov.info | coveralls"
  10. },
  11. "pre-commit": [
  12. "lint",
  13. "test"
  14. ],
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/mcollina/fastparallel.git"
  18. },
  19. "keywords": [
  20. "parallel",
  21. "fast",
  22. "async"
  23. ],
  24. "author": "Matteo Collina <hello@matteocollina.com>",
  25. "license": "ISC",
  26. "bugs": {
  27. "url": "https://github.com/mcollina/fastparallel/issues"
  28. },
  29. "homepage": "https://github.com/mcollina/fastparallel",
  30. "devDependencies": {
  31. "async": "^3.1.0",
  32. "coveralls": "^3.0.5",
  33. "fastbench": "^1.0.1",
  34. "faucet": "0.0.1",
  35. "insync": "^2.1.1",
  36. "items": "^2.1.2",
  37. "neo-async": "^2.6.1",
  38. "nyc": "^14.1.1",
  39. "parallelize": "^3.0.1",
  40. "pre-commit": "^1.2.2",
  41. "standard": "^13.0.1",
  42. "tape": "^4.11.0"
  43. },
  44. "dependencies": {
  45. "reusify": "^1.0.4",
  46. "xtend": "^4.0.2"
  47. }
  48. }