Files
pnpm/package.json
2017-10-27 22:22:55 +03:00

133 lines
3.3 KiB
JSON

{
"name": "pnpm",
"bundledName": "@pnpm/bundled",
"description": "Fast, disk space efficient package manager",
"version": "1.18.1",
"author": {
"name": "Zoltan Kochan",
"email": "z@kochan.io",
"url": "https://www.kochan.io/",
"twitter": "ZoltanKochan"
},
"bin": {
"pnpm": "lib/bin/pnpm.js",
"pnpx": "lib/bin/pnpx.js"
},
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"main": "lib/bin/pnpm.js",
"files": [
"lib/",
"npm-shrinkwrap.json"
],
"dependencies": {
"@pnpm/outdated": "^0.0.1",
"@zkochan/libnpx": "^9.6.1",
"byline": "^5.0.0",
"camelcase": "^4.1.0",
"chalk": "^2.2.0",
"common-tags": "^1.4.0",
"cross-spawn": "^5.0.0",
"graceful-fs": "^4.1.11",
"is-ci": "^1.0.10",
"load-json-file": "^3.0.0",
"loud-rejection": "^1.6.0",
"nopt": "^4.0.1",
"not-bundled-npm": "^5.4.2",
"path-name": "^1.0.0",
"pnpm-default-reporter": "^0.9.5",
"pnpm-file-reporter": "^0.0.1",
"pnpm-list": "^1.0.0",
"pnpm-logger": "^0.6.2",
"ramda": "^0.25.0",
"strip-color": "^0.1.0",
"supi": "^0.5.0",
"text-table": "^0.2.0",
"update-notifier": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^4.0.0",
"@commitlint/config-angular": "^4.2.0",
"@commitlint/prompt-cli": "^4.0.0",
"@types/byline": "^4.2.31",
"@types/common-tags": "^1.4.0",
"@types/load-json-file": "^2.0.6",
"@types/mkdirp": "^0.5.0",
"@types/node": "^8.0.33",
"@types/nopt": "^3.0.29",
"@types/ramda": "^0.24.16",
"@types/tape": "^4.2.30",
"@types/update-notifier": "^1.0.2",
"@zkochan/husky": "^0.0.0",
"npm-scripts-info": "^0.3.6",
"rimraf": "^2.5.4",
"tslint": "^5.4.2",
"typescript": "^2.4.1"
},
"directories": {
"test": "test"
},
"homepage": "https://pnpm.js.org",
"keywords": [
"dependency manager",
"install",
"installer",
"uninstall",
"remove",
"link",
"prune",
"shrinkwrap",
"lockfile",
"fast",
"rapid",
"efficient",
"package.json",
"packages",
"dependencies",
"symlinks",
"hardlinks",
"modules",
"npm",
"package manager"
],
"license": "MIT",
"preferGlobal": true,
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/pnpm.git"
},
"scripts": {
"prepare": "pnpm install --prefix .scripts/self-installer && pnpm install --prefix test",
"info": "npm-scripts-info",
"start": "npm run tsc -- --watch",
"?commit": "echo 'Run Git commit wizard'",
"commit": "commit",
"commitmsg": "commitlint -e",
"lint": "tslint -c tslint.json --project .",
"test": "npm run tsc && npm run lint && npm test --prefix .scripts/self-installer && npm test --prefix test",
"tsc": "rimraf lib && tsc",
"prepublishOnly": "echo \"Publish is only allowed via 'npm run release'\" && exit 1",
"release": "sh .scripts/release.sh",
"version": "sh .scripts/version.sh"
},
"publishconfig": {
"tag": "next"
},
"greenkeeper": {
"ignore": [
"pnpm-default-reporter",
"pnpm-file-reporter",
"pnpm-install-checks",
"pnpm-logger",
"pnpm-registry-mock",
"remove-all-except-outer-links",
"pnpm-shrinkwrap",
"supi"
]
}
}