package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "are-we-there-yet",
  3. "version": "2.0.0",
  4. "description": "Keep track of the overall completion of many disparate processes",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "test": "tap",
  8. "npmclilint": "npmcli-lint",
  9. "lint": "eslint '**/*.js'",
  10. "lintfix": "npm run lint -- --fix",
  11. "posttest": "npm run lint",
  12. "postsnap": "npm run lintfix --",
  13. "preversion": "npm test",
  14. "postversion": "npm publish",
  15. "prepublishOnly": "git push origin --follow-tags",
  16. "snap": "tap"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/npm/are-we-there-yet.git"
  21. },
  22. "author": "GitHub Inc.",
  23. "license": "ISC",
  24. "bugs": {
  25. "url": "https://github.com/npm/are-we-there-yet/issues"
  26. },
  27. "homepage": "https://github.com/npm/are-we-there-yet",
  28. "devDependencies": {
  29. "@npmcli/eslint-config": "^1.0.0",
  30. "@npmcli/template-oss": "^1.0.2",
  31. "eslint": "^7.32.0",
  32. "eslint-plugin-node": "^11.1.0",
  33. "tap": "^15.0.9"
  34. },
  35. "dependencies": {
  36. "delegates": "^1.0.0",
  37. "readable-stream": "^3.6.0"
  38. },
  39. "files": [
  40. "bin",
  41. "lib"
  42. ],
  43. "engines": {
  44. "node": ">=10"
  45. },
  46. "tap": {
  47. "branches": 68,
  48. "statements": 92,
  49. "functions": 86,
  50. "lines": 92
  51. },
  52. "templateVersion": "1.0.2"
  53. }