Files
pnpm/packages/package-store/package.json
2018-11-15 01:14:33 +02:00

90 lines
2.3 KiB
JSON

{
"name": "@pnpm/package-store",
"description": "A storage for packages",
"version": "1.0.0",
"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/fetcher-base": "2.0.0",
"@pnpm/fs-locker": "1.0.2",
"@pnpm/package-requester": "4.1.9",
"@pnpm/resolver-base": "2.0.0",
"@pnpm/store-controller-types": "1.0.0",
"@pnpm/types": "2.0.0",
"@types/mz": "0.0.32",
"@types/node": "10.12.5",
"@types/ramda": "0.25.39",
"load-json-file": "5.1.0",
"mkdirp-promise": "5.0.1",
"mz": "2.7.0",
"ncp": "2.0.0",
"p-filter": "1.0.0",
"p-limit": "2.0.0",
"path-exists": "3.0.0",
"path-temp": "1.0.0",
"ramda": "0.25.0",
"rename-overwrite": "1.0.3",
"rimraf-then": "1.0.1",
"util.promisify": "1.0.0",
"write-json-file": "3.0.2"
},
"devDependencies": {
"@pnpm/logger": "2.1.0",
"@pnpm/npm-resolver": "2.2.6",
"@pnpm/package-store": "link:",
"@pnpm/tarball-fetcher": "2.0.8",
"@pnpm/tslint-config": "0.0.0",
"@types/tape": "4.2.32",
"@types/tempy": "0.2.0",
"npm-scripts-info": "0.3.9",
"rimraf": "2.6.2",
"tape": "4.9.1",
"tempy": "0.2.1",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typescript": "3.1.6"
},
"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": ">=6"
},
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/package-store",
"scripts": {
"info": "npm-scripts-info",
"start": "npm 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": "npm run lint && npm run tsc && ts-node test --type-check",
"tsc": "rimraf lib && tsc",
"prepublishOnly": "npm run tsc"
}
}