package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "queue",
  3. "version": "6.0.2",
  4. "description": "asynchronous function queue with adjustable concurrency",
  5. "keywords": [
  6. "queue",
  7. "async",
  8. "asynchronous",
  9. "synchronous",
  10. "job",
  11. "task",
  12. "concurrency",
  13. "concurrent"
  14. ],
  15. "files": [
  16. "index.js",
  17. "index.d.ts"
  18. ],
  19. "dependencies": {
  20. "inherits": "~2.0.3"
  21. },
  22. "devDependencies": {
  23. "@types/node": "*",
  24. "browserify": "^16.2.3",
  25. "coveralls": "^3.0.3",
  26. "istanbul": "^0.4.5",
  27. "standard": "^12.0.1",
  28. "tape": "^4.10.1",
  29. "tsd-check": "*",
  30. "typescript": "^3.3.3333"
  31. },
  32. "scripts": {
  33. "test": "standard && node test && tsd-check",
  34. "test-browser": "standard && browserify test/index.js > test/bundle.js && echo \"open test/index.html in your browser\"",
  35. "travis": "standard && istanbul cover test --report lcovonly && cat coverage/lcov.info | coveralls",
  36. "travis-ts": "tsc test/typescript.ts --m System --out /dev/null && echo 'TypeScript compilation passed.'",
  37. "example": "node example",
  38. "lint": "standard"
  39. },
  40. "repository": "https://github.com/jessetane/queue.git",
  41. "author": "Jesse Tane <jesse.tane@gmail.com>",
  42. "license": "MIT"
  43. }