package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "fastseries",
  3. "version": "2.0.0",
  4. "description": "Zero-overhead asynchronous series/each/map function calls",
  5. "main": "series.js",
  6. "scripts": {
  7. "lint": "standard --verbose | snazzy",
  8. "unit": "tape test.js",
  9. "unit:report": "nyc --reporter=html --reporter=cobertura --reporter=text tape test.js",
  10. "unit:cov": "nyc --reporter=lcovonly tape test.js",
  11. "cov": "nyc --reporter=text tape test.js",
  12. "test:report": "npm run lint && npm run unit:report",
  13. "test": "npm run lint && npm run unit:cov"
  14. },
  15. "pre-commit": [
  16. "test"
  17. ],
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/mcollina/fastseries.git"
  21. },
  22. "keywords": [
  23. "series",
  24. "fast",
  25. "async"
  26. ],
  27. "author": "Matteo Collina <hello@matteocollina.com>",
  28. "license": "ISC",
  29. "bugs": {
  30. "url": "https://github.com/mcollina/fastseries/issues"
  31. },
  32. "homepage": "https://github.com/mcollina/fastseries",
  33. "devDependencies": {
  34. "async": "^3.2.0",
  35. "fastbench": "^1.0.1",
  36. "neo-async": "^2.6.1",
  37. "nyc": "^15.0.0",
  38. "pre-commit": "^1.2.2",
  39. "snazzy": "^8.0.0",
  40. "standard": "^14.3.1",
  41. "tape": "^4.13.0",
  42. "tiny-each-async": "^2.0.3"
  43. }
  44. }