package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "fastq",
  3. "version": "1.13.0",
  4. "description": "Fast, in memory work queue",
  5. "main": "queue.js",
  6. "scripts": {
  7. "lint": "standard --verbose | snazzy",
  8. "unit": "nyc --lines 100 --branches 100 --functions 100 --check-coverage --reporter=text tape test/test.js test/promise.js",
  9. "coverage": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/test.js test/promise.js",
  10. "test:report": "npm run lint && npm run unit:report",
  11. "test": "npm run lint && npm run unit && npm run typescript",
  12. "typescript": "tsc --project ./test/tsconfig.json",
  13. "legacy": "tape test/test.js"
  14. },
  15. "pre-commit": [
  16. "test"
  17. ],
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/mcollina/fastq.git"
  21. },
  22. "keywords": [
  23. "fast",
  24. "queue",
  25. "async",
  26. "worker"
  27. ],
  28. "author": "Matteo Collina <hello@matteocollina.com>",
  29. "license": "ISC",
  30. "bugs": {
  31. "url": "https://github.com/mcollina/fastq/issues"
  32. },
  33. "homepage": "https://github.com/mcollina/fastq#readme",
  34. "devDependencies": {
  35. "async": "^3.1.0",
  36. "neo-async": "^2.6.1",
  37. "nyc": "^15.0.0",
  38. "pre-commit": "^1.2.2",
  39. "snazzy": "^9.0.0",
  40. "standard": "^16.0.0",
  41. "tape": "^5.0.0",
  42. "typescript": "^4.0.2"
  43. },
  44. "dependencies": {
  45. "reusify": "^1.0.4"
  46. },
  47. "standard": {
  48. "ignore": [
  49. "example.mjs"
  50. ]
  51. }
  52. }