mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-03 21:44:52 -04:00
63 lines
1.4 KiB
JSON
63 lines
1.4 KiB
JSON
{
|
|
"name": "@pnpm/default-fetcher",
|
|
"version": "0.1.0",
|
|
"description": "pnpm's default package fetcher",
|
|
"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/default-fetcher.git"
|
|
},
|
|
"keywords": [
|
|
"pnpm",
|
|
"resolver",
|
|
"npm"
|
|
],
|
|
"author": "Zoltan Kochan <z@kochan.io> (https://www.kochan.io/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/default-fetcher/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/default-fetcher#readme",
|
|
"dependencies": {
|
|
"@pnpm/git-fetcher": "^0.1.0",
|
|
"@pnpm/tarball-fetcher": "^0.2.0",
|
|
"@pnpm/types": "^1.2.1",
|
|
"package-store": "^0.9.0",
|
|
"unpack-stream": "^2.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/logger": "^1.0.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
|
|
}
|
|
}
|
|
}
|