mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-03 21:44:52 -04:00
69 lines
1.6 KiB
JSON
69 lines
1.6 KiB
JSON
{
|
|
"name": "@pnpm/server",
|
|
"version": "0.1.0",
|
|
"description": "A pnpm installer server",
|
|
"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": "rimraf .store && npm run lint && preview && ts-node test && mos t",
|
|
"md": "mos",
|
|
"prepublishOnly": "npm run tsc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/pnpm/server.git"
|
|
},
|
|
"keywords": [
|
|
"pnpm",
|
|
"server"
|
|
],
|
|
"author": "Zoltan Kochan <z@kochan.io> (https://www.kochan.io/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/server/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/server#readme",
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/logger": "^1.0.0",
|
|
"@pnpm/npm-resolver": "^0.3.1",
|
|
"@pnpm/tarball-fetcher": "^0.3.1",
|
|
"@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
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/package-requester": "^0.4.0",
|
|
"@types/json-socket": "^0.1.17",
|
|
"@types/node": "^8.0.57",
|
|
"@types/uuid": "^3.4.3",
|
|
"json-socket": "^0.3.0",
|
|
"package-store": "^0.11.0",
|
|
"uuid": "^3.1.0"
|
|
}
|
|
}
|