mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-01 10:42:28 -05:00
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "@pnpm/git-fetcher",
|
|
"version": "6.0.2",
|
|
"description": "A fetcher for git-hosted packages",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"scripts": {
|
|
"_test": "jest",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"lint": "eslint src/**/*.ts test/**/*.ts",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/fetching/git-fetcher",
|
|
"engines": {
|
|
"node": ">=14.6"
|
|
},
|
|
"keywords": [
|
|
"pnpm7",
|
|
"pnpm",
|
|
"fetcher"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/fetching/git-fetcher#readme",
|
|
"dependencies": {
|
|
"@pnpm/fetcher-base": "workspace:*",
|
|
"@pnpm/prepare-package": "workspace:*",
|
|
"@zkochan/rimraf": "^2.1.2",
|
|
"execa": "npm:safe-execa@^0.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/cafs": "workspace:*",
|
|
"@pnpm/create-cafs-store": "workspace:*",
|
|
"@pnpm/git-fetcher": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"p-defer": "^3.0.0",
|
|
"tempy": "^1.0.1"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|