Files
pnpm/package.json
2017-06-28 10:46:35 +03:00

165 lines
4.2 KiB
JSON

{
"name": "pnpm",
"description": "Fast, disk space efficient package manager",
"version": "1.0.0",
"author": "Rico Sta. Cruz <rico@ricostacruz.com>",
"bin": {
"pnpm": "lib/bin/pnpm.js"
},
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/"
],
"dependencies": {
"@types/byline": "^4.2.31",
"@types/common-tags": "^1.2.5",
"@types/load-json-file": "^2.0.5",
"@types/mz": "^0.0.31",
"@types/node": "^7.0.27",
"@types/nopt": "^3.0.29",
"@types/npm": "^2.0.28",
"@types/ramda": "^0.0.15",
"@types/rc": "^0.0.1",
"@types/semver": "^5.3.30",
"@types/update-notifier": "^1.0.0",
"@zkochan/cmd-shim": "^2.2.3",
"arr-flatten": "^1.0.1",
"bole": "^3.0.2",
"byline": "^5.0.0",
"camelcase": "^4.1.0",
"common-tags": "^1.4.0",
"cross-spawn": "^5.0.0",
"dint": "^1.0.0",
"execa": "^0.7.0",
"find-up": "^2.1.0",
"fs-write-stream-atomic": "^1.0.10",
"get-npm-tarball-url": "^2.0.0",
"graceful-fs": "^4.1.11",
"is-ci": "^1.0.10",
"is-inner-link": "^2.0.0",
"is-subdir": "^1.0.0",
"is-windows": "^1.0.0",
"load-json-file": "^2.0.0",
"load-yaml-file": "^0.1.0",
"loud-rejection": "^1.6.0",
"mem": "^1.1.0",
"mkdirp-promise": "^5.0.1",
"mz": "^2.6.0",
"ncp": "^2.0.0",
"ndjson": "^1.5.0",
"node-gyp": "^3.6.0",
"nopt": "^4.0.1",
"normalize-path": "^2.1.1",
"normalize-registry-url": "^1.0.0",
"normalize-ssh": "^1.0.0",
"npm": "^5.0.2",
"npm-package-arg": "^5.0.0",
"npm-registry-client": "^8.1.0",
"os-homedir": "^1.0.2",
"p-filter": "^1.0.0",
"p-limit": "^1.1.0",
"parse-npm-tarball-url": "^1.0.1",
"path-exists": "^3.0.0",
"path-name": "^1.0.0",
"pnpm-default-reporter": "^0.6.0",
"pnpm-file-reporter": "^0.0.1",
"pnpm-install-checks": "^1.1.0",
"pnpm-logger": "^0.3.0",
"pnpm-shrinkwrap": "^2.0.0",
"proper-lockfile": "^2.0.0",
"ramda": "^0.24.1",
"read-package-json": "^2.0.5",
"remove-all-except-outer-links": "^1.0.0",
"rimraf-then": "^1.0.1",
"semver": "^5.3.0",
"ssri": "^4.1.3",
"symlink-dir": "^1.0.3",
"thenify": "^3.3.0",
"unpack-stream": "^2.0.0-beta.1",
"update-notifier": "^2.1.0",
"write-json-file": "^2.0.0",
"write-pkg": "^3.1.0",
"write-yaml-file": "^1.0.0"
},
"devDependencies": {
"@types/mkdirp": "^0.3.29",
"@types/tape": "^4.2.30",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.13.2",
"in-publish": "^2.0.0",
"npm-scripts-info": "^0.3.6",
"rimraf": "^2.5.4",
"tslint": "^5.4.2",
"typescript": "^2.4.1",
"validate-commit-msg": "^2.7.0"
},
"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": "cd test && pnpm install",
"info": "npm-scripts-info",
"start": "npm run tsc -- --watch",
"?cz": "echo 'Run Git commit wizard'",
"cz": "git-cz",
"commitmsg": "validate-commit-msg",
"lint": "tslint -c tslint.json --project .",
"test": "npm run tsc && npm run lint && cd test && npm test",
"tsc": "rimraf lib && tsc",
"prepublish": "in-publish && echo 'You need to use \"publish-packed\" to publish pnpm' && false || npm run tsc"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"greenkeeper": {
"ignore": [
"pnpm-default-reporter",
"pnpm-file-reporter",
"pnpm-install-checks",
"pnpm-logger",
"pnpm-registry-mock",
"remove-all-except-outer-links",
"pnpm-shrinkwrap"
]
}
}