Files
pnpm/resolving/git-resolver/package.json
2024-09-09 15:43:02 +02:00

53 lines
1.3 KiB
JSON

{
"name": "@pnpm/git-resolver",
"version": "9.0.8",
"description": "Resolver for git-hosted packages",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"engines": {
"node": ">=18.12"
},
"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": [
"pnpm9",
"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": "catalog:",
"hosted-git-info": "catalog:",
"semver": "catalog:"
},
"devDependencies": {
"@pnpm/git-resolver": "workspace:*",
"@types/hosted-git-info": "catalog:",
"@types/is-windows": "catalog:",
"@types/semver": "catalog:",
"is-windows": "catalog:"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
}
}