Files
pnpm/resolving/git-resolver/package.json
Zoltan Kochan ba15163113 Revert "fix: update deps"
This reverts commit 952c5409c6.
2024-04-12 00:55:57 +02:00

53 lines
1.4 KiB
JSON

{
"name": "@pnpm/git-resolver",
"version": "8.0.13",
"description": "Resolver for git-hosted packages",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"engines": {
"node": ">=16.14"
},
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"fix": "tslint -c tslint.json src/**/*.ts test/**/*.ts --fix",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/resolving/git-resolver",
"keywords": [
"pnpm8",
"pnpm",
"resolver",
"npm"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/resolving/git-resolver#readme",
"dependencies": {
"@pnpm/fetch": "workspace:*",
"@pnpm/resolver-base": "workspace:*",
"graceful-git": "^3.1.2",
"hosted-git-info": "npm:@pnpm/hosted-git-info@1.0.0",
"semver": "^7.5.4"
},
"devDependencies": {
"@pnpm/git-resolver": "workspace:*",
"@types/hosted-git-info": "^3.0.5",
"@types/is-windows": "^1.0.2",
"@types/semver": "7.5.3",
"is-windows": "^1.0.2"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
}
}