Files
pnpm/packages/package-store/package.json
2019-10-03 01:54:49 +03:00

86 lines
2.3 KiB
JSON

{
"name": "@pnpm/package-store",
"description": "A storage for packages",
"version": "5.0.0-1",
"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": "workspace:3.0.3",
"@pnpm/fetcher-base": "workspace:3.0.4",
"@pnpm/fs-locker": "3.0.1",
"@pnpm/package-requester": "workspace:8.0.0-0",
"@pnpm/pkgid-to-filename": "2.0.0",
"@pnpm/resolver-base": "workspace:3.1.2",
"@pnpm/store-controller-types": "workspace:4.0.0-0",
"@pnpm/types": "workspace:3.2.0",
"@zkochan/rimraf": "1.0.0",
"load-json-file": "6.2.0",
"make-dir": "3.0.0",
"mz": "2.7.0",
"ncp": "2.0.0",
"p-filter": "2.1.0",
"p-limit": "2.2.1",
"path-exists": "4.0.0",
"path-temp": "2.0.0",
"ramda": "0.26.1",
"rename-overwrite": "2.0.2",
"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/proxyquire": "1.3.28",
"@types/ramda": "0.26.21",
"@types/sinon": "7.5.0",
"proxyquire": "2.1.3",
"rimraf": "3.0.0",
"sinon": "7.5.0",
"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"
}
}