package.json 834 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "are-we-there-yet",
  3. "version": "1.1.5",
  4. "description": "Keep track of the overall completion of many disparate processes",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "standard && tap test/*.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/iarna/are-we-there-yet.git"
  12. },
  13. "author": "Rebecca Turner (http://re-becca.org)",
  14. "license": "ISC",
  15. "bugs": {
  16. "url": "https://github.com/iarna/are-we-there-yet/issues"
  17. },
  18. "homepage": "https://github.com/iarna/are-we-there-yet",
  19. "devDependencies": {
  20. "standard": "^11.0.1",
  21. "tap": "^12.0.1"
  22. },
  23. "dependencies": {
  24. "delegates": "^1.0.0",
  25. "readable-stream": "^2.0.6"
  26. },
  27. "files": [
  28. "index.js",
  29. "tracker-base.js",
  30. "tracker-group.js",
  31. "tracker-stream.js",
  32. "tracker.js",
  33. "CHANGES.md"
  34. ]
  35. }