package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "fastfall",
  3. "version": "1.5.1",
  4. "description": "call your callbacks in a waterfall, at speed",
  5. "main": "fall.js",
  6. "scripts": {
  7. "lint": "standard",
  8. "test": "tape test.js | faucet",
  9. "coverage": "istanbul cover tape test.js | tap-spec",
  10. "coveralls": "npm run coverage ; cat ./coverage/lcov.info | coveralls"
  11. },
  12. "precommit": [
  13. "lint",
  14. "test"
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/mcollina/fastfall.git"
  19. },
  20. "keywords": [
  21. "async",
  22. "waterfall",
  23. "fall",
  24. "fast",
  25. "callback"
  26. ],
  27. "author": "Matteo Collina <hello@matteocollina.com>",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/mcollina/fastfall/issues"
  31. },
  32. "homepage": "https://github.com/mcollina/fastfall#readme",
  33. "engines": {
  34. "node": ">=0.10.0"
  35. },
  36. "devDependencies": {
  37. "async": "^1.0.0",
  38. "coveralls": "^2.11.6",
  39. "fastbench": "^1.0.0",
  40. "faucet": "0.0.1",
  41. "insync": "^2.1.1",
  42. "istanbul": "^0.4.1",
  43. "neo-async": "^1.7.0",
  44. "pre-commit": "^1.0.10",
  45. "run-waterfall": "^1.1.1",
  46. "standard": "^5.0.0",
  47. "tap-spec": "^4.1.1",
  48. "tape": "^4.0.0",
  49. "waterfallize": "^1.0.0"
  50. },
  51. "dependencies": {
  52. "reusify": "^1.0.0"
  53. }
  54. }