mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-28 17:48:17 -05:00
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"name": "@pnpm/git-utils",
|
|
"version": "1000.0.0",
|
|
"description": "Utilities for git",
|
|
"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-only": "tsc --build",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/packages/git-utils",
|
|
"keywords": [
|
|
"pnpm10",
|
|
"pnpm",
|
|
"git",
|
|
"npm"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/git-utils#readme",
|
|
"dependencies": {
|
|
"execa": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/git-utils": "workspace:*",
|
|
"tempy": "catalog:"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|