package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "throat",
  3. "version": "4.1.0",
  4. "description": "Throttle the parallelism of an asynchronous (promise returning) function / functions",
  5. "keywords": [
  6. "promise",
  7. "aplus",
  8. "then",
  9. "throttle",
  10. "concurrency",
  11. "parallelism",
  12. "limit"
  13. ],
  14. "files": [
  15. "index.d.ts",
  16. "index.js",
  17. "index.js.flow"
  18. ],
  19. "devDependencies": {
  20. "coveralls": "^2.11.2",
  21. "flow-bin": "^0.49.1",
  22. "istanbul": "^0.4.5",
  23. "jest": "^20.0.4",
  24. "promise": "^8.0.0",
  25. "sauce-test": "^1.0.0",
  26. "test-result": "^2.0.0",
  27. "testit": "^2.1.3",
  28. "typescript": "^2.3.4"
  29. },
  30. "scripts": {
  31. "tsc": "tsc --noEmit",
  32. "flow": "flow",
  33. "test": "node test/index.js && npm run test:types && node test/browser.js",
  34. "test:types": "jest",
  35. "coverage": "istanbul cover test/index.js",
  36. "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls"
  37. },
  38. "repository": {
  39. "type": "git",
  40. "url": "https://github.com/ForbesLindesay/throat.git"
  41. },
  42. "author": "ForbesLindesay",
  43. "license": "MIT"
  44. }