mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-30 10:38:13 -05:00
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"name": "@pnpm/assert-store",
|
|
"description": "Utils for testing pnpm store",
|
|
"version": "2.0.1",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib/"
|
|
],
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/master/privatePackages/assert-store#readme",
|
|
"keywords": [],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/master/privatePackages/assert-store",
|
|
"scripts": {
|
|
"compile": "tsc --build",
|
|
"lint": "eslint src/**/*.ts test/**/*.ts",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"pretest": "pnpm install -C test/fixture/project --force --no-shared-workspace-lockfile",
|
|
"test": "pnpm pretest && pnpm run compile && jest"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/registry-mock": "catalog:",
|
|
"@pnpm/store.cafs": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/assert-store": "workspace:*",
|
|
"@pnpm/constants": "workspace:*"
|
|
}
|
|
}
|