mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-02 12:08:14 -05:00
22 lines
548 B
JSON
22 lines
548 B
JSON
{
|
|
"name": "@pnpm/test-ipc-server",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"bin": {
|
|
"test-ipc-server-client": "./bin/test-ipc-server-client.js"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/prepare": "workspace:*",
|
|
"@pnpm/test-ipc-server": "workspace:*",
|
|
"@types/node": "catalog:",
|
|
"execa": "catalog:"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint src/**/*.ts test/**/*.ts",
|
|
"compile": "rimraf tsconfig.tsbuildinfo lib && tsc --build",
|
|
"test": "pnpm run compile && jest"
|
|
}
|
|
}
|