package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@npmcli/git",
  3. "version": "6.0.3",
  4. "main": "lib/index.js",
  5. "files": [
  6. "bin/",
  7. "lib/"
  8. ],
  9. "description": "a util for spawning git from npm CLI contexts",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/npm/git.git"
  13. },
  14. "author": "GitHub Inc.",
  15. "license": "ISC",
  16. "scripts": {
  17. "lint": "npm run eslint",
  18. "snap": "tap",
  19. "test": "tap",
  20. "posttest": "npm run lint",
  21. "postlint": "template-oss-check",
  22. "lintfix": "npm run eslint -- --fix",
  23. "template-oss-apply": "template-oss-apply --force",
  24. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  25. },
  26. "tap": {
  27. "timeout": 600,
  28. "nyc-arg": [
  29. "--exclude",
  30. "tap-snapshots/**"
  31. ]
  32. },
  33. "devDependencies": {
  34. "@npmcli/eslint-config": "^5.0.0",
  35. "@npmcli/template-oss": "4.24.1",
  36. "npm-package-arg": "^12.0.1",
  37. "slash": "^3.0.0",
  38. "tap": "^16.0.1"
  39. },
  40. "dependencies": {
  41. "@npmcli/promise-spawn": "^8.0.0",
  42. "ini": "^5.0.0",
  43. "lru-cache": "^10.0.1",
  44. "npm-pick-manifest": "^10.0.0",
  45. "proc-log": "^5.0.0",
  46. "promise-retry": "^2.0.1",
  47. "semver": "^7.3.5",
  48. "which": "^5.0.0"
  49. },
  50. "engines": {
  51. "node": "^18.17.0 || >=20.5.0"
  52. },
  53. "templateOSS": {
  54. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  55. "version": "4.24.1",
  56. "publish": true
  57. }
  58. }