mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-03 21:44:52 -04:00
82 lines
2.0 KiB
JSON
82 lines
2.0 KiB
JSON
{
|
|
"name": "@pnpm/package-requester",
|
|
"version": "0.3.0",
|
|
"description": "Concurrent downloader of npm-compatible packages",
|
|
"main": "lib/index.js",
|
|
"typings": "lib/index.d.ts",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"scripts": {
|
|
"lint": "tslint -c tslint.json --project .",
|
|
"tsc": "rimraf lib && tsc",
|
|
"test": "npm run lint && preview && ts-node test && mos t",
|
|
"md": "mos",
|
|
"prepublishOnly": "npm run tsc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/pnpm/package-requester.git"
|
|
},
|
|
"keywords": [
|
|
"pnpm",
|
|
"resolver",
|
|
"npm"
|
|
],
|
|
"author": "Zoltan Kochan <z@kochan.io> (https://www.kochan.io/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/package-requester/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/package-requester#readme",
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "^1.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/types": "^1.2.1",
|
|
"@types/load-json-file": "^2.0.7",
|
|
"@types/mz": "^0.0.32",
|
|
"@types/p-queue": "^1.1.0",
|
|
"@types/write-json-file": "^2.2.1",
|
|
"load-json-file": "^4.0.0",
|
|
"mkdirp-promise": "^5.0.1",
|
|
"mz": "^2.7.0",
|
|
"p-limit": "^1.1.0",
|
|
"p-queue": "^2.3.0",
|
|
"package-store": "^0.10.0",
|
|
"path-exists": "^3.0.0",
|
|
"read-package-json": "^2.0.12",
|
|
"rename-overwrite": "^1.0.0",
|
|
"rimraf-then": "^1.0.1",
|
|
"symlink-dir": "^1.1.0",
|
|
"unpack-stream": "^2.2.0",
|
|
"util.promisify": "^1.0.0",
|
|
"write-json-file": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/logger": "^1.0.0",
|
|
"@pnpm/npm-resolver": "^0.3.0",
|
|
"@pnpm/tarball-fetcher": "^0.3.0",
|
|
"@types/tape": "^4.2.31",
|
|
"mos": "^2.0.0-alpha.3",
|
|
"mos-plugin-readme": "^1.0.4",
|
|
"package-preview": "^1.0.1",
|
|
"rimraf": "^2.6.2",
|
|
"tape": "^4.8.0",
|
|
"ts-node": "^3.3.0",
|
|
"tslint": "^5.8.0",
|
|
"typescript": "^2.6.1"
|
|
},
|
|
"mos": {
|
|
"plugins": [
|
|
"readme"
|
|
],
|
|
"installation": {
|
|
"useShortAlias": true
|
|
}
|
|
}
|
|
}
|