package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@npmcli/git",
  3. "version": "4.0.4",
  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": "https://github.com/npm/git.git"
  13. },
  14. "author": "GitHub Inc.",
  15. "license": "ISC",
  16. "scripts": {
  17. "lint": "eslint \"**/*.js\"",
  18. "snap": "tap",
  19. "test": "tap",
  20. "posttest": "npm run lint",
  21. "postlint": "template-oss-check",
  22. "lintfix": "npm run lint -- --fix",
  23. "template-oss-apply": "template-oss-apply --force"
  24. },
  25. "tap": {
  26. "check-coverage": true,
  27. "coverage-map": "map.js",
  28. "nyc-arg": [
  29. "--exclude",
  30. "tap-snapshots/**"
  31. ]
  32. },
  33. "devDependencies": {
  34. "@npmcli/eslint-config": "^4.0.0",
  35. "@npmcli/template-oss": "4.12.0",
  36. "npm-package-arg": "^10.0.0",
  37. "slash": "^3.0.0",
  38. "tap": "^16.0.1"
  39. },
  40. "dependencies": {
  41. "@npmcli/promise-spawn": "^6.0.0",
  42. "lru-cache": "^7.4.4",
  43. "npm-pick-manifest": "^8.0.0",
  44. "proc-log": "^3.0.0",
  45. "promise-inflight": "^1.0.1",
  46. "promise-retry": "^2.0.1",
  47. "semver": "^7.3.5",
  48. "which": "^3.0.0"
  49. },
  50. "engines": {
  51. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  52. },
  53. "templateOSS": {
  54. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  55. "windowsCI": false,
  56. "version": "4.12.0"
  57. }
  58. }