mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-07 23:48:05 -04:00
82 lines
2.1 KiB
JSON
82 lines
2.1 KiB
JSON
{
|
|
"name": "@pnpm/package-store",
|
|
"description": "A storage for packages",
|
|
"version": "4.0.14",
|
|
"author": {
|
|
"name": "Zoltan Kochan",
|
|
"email": "z@kochan.io",
|
|
"url": "https://www.kochan.io/"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"main": "lib/index.js",
|
|
"typings": "lib/index.d.ts",
|
|
"files": [
|
|
"lib/"
|
|
],
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "^2.1.0"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/core-loggers": "3.0.3",
|
|
"@pnpm/fetcher-base": "3.0.4",
|
|
"@pnpm/fs-locker": "3.0.1",
|
|
"@pnpm/package-requester": "7.1.1",
|
|
"@pnpm/pkgid-to-filename": "2.0.0",
|
|
"@pnpm/resolver-base": "3.1.2",
|
|
"@pnpm/store-controller-types": "3.0.3",
|
|
"@pnpm/types": "3.2.0",
|
|
"load-json-file": "6.0.0",
|
|
"make-dir": "3.0.0",
|
|
"mz": "2.7.0",
|
|
"ncp": "2.0.0",
|
|
"p-filter": "2.1.0",
|
|
"p-limit": "2.2.0",
|
|
"path-exists": "4.0.0",
|
|
"path-temp": "2.0.0",
|
|
"ramda": "0.26.1",
|
|
"rename-overwrite": "2.0.1",
|
|
"rimraf-then": "1.0.1",
|
|
"write-json-file": "4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/logger": "2.1.1",
|
|
"@pnpm/npm-resolver": "file:../npm-resolver",
|
|
"@pnpm/package-store": "link:",
|
|
"@pnpm/tarball-fetcher": "file:../tarball-fetcher",
|
|
"@types/mz": "0.0.32",
|
|
"@types/ramda": "0.25.39",
|
|
"rimraf": "2.6.3",
|
|
"tape": "4.11.0",
|
|
"tempy": "0.3.0"
|
|
},
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/master/packages/package-store#readme",
|
|
"keywords": [
|
|
"store",
|
|
"storage",
|
|
"global store",
|
|
"maching store",
|
|
"central storage",
|
|
"cache",
|
|
"packages"
|
|
],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=8.15"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/package-store",
|
|
"scripts": {
|
|
"start": "pnpm run tsc -- --watch",
|
|
"fix": "tslint -c tslint.json src/**/*.ts test/**/*.ts --fix",
|
|
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
|
|
"pretest": "rimraf .tmp",
|
|
"test": "pnpm run lint && pnpm run tsc && ts-node test --type-check",
|
|
"tsc": "rimraf lib && tsc",
|
|
"prepublishOnly": "pnpm run tsc"
|
|
}
|
|
}
|