Files
pnpm/package.json
2017-02-02 23:49:27 +02:00

158 lines
4.3 KiB
JSON

{
"name": "pnpm",
"description": "Fast, disk space efficient npm installs",
"version": "0.52.0",
"author": "Rico Sta. Cruz <rico@ricostacruz.com>",
"bin": {
"pnpm": "lib/bin/pnpm.js"
},
"bugs": {
"url": "http://ghub.io/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/js-yaml": "3.5.29",
"@types/load-json-file": "2.0.5",
"@types/mkdirp": "0.3.29",
"@types/mz": "0.0.30",
"@types/node": "7.0.4",
"@types/rc": "0.0.1",
"@types/semver": "5.3.30",
"@types/update-notifier": "1.0.0",
"@zkochan/cmd-shim": "2.2.1",
"@zkochan/hosted-git-info": "2.1.5",
"arr-flatten": "1.0.1",
"bole": "3.0.2",
"byline": "5.0.0",
"camelcase-keys": "4.0.0",
"common-tags": "1.4.0",
"cross-spawn": "^5.0.0",
"delocalize-dependencies": "0.1.0",
"execa": "0.6.0",
"exists-file": "3.0.0",
"find-up": "2.1.0",
"global-bin-path": "0.1.1",
"is-ci": "1.0.10",
"is-windows": "1.0.0",
"js-yaml": "3.7.0",
"load-json-file": "2.0.0",
"lodash.clonedeep": "4.5.0",
"lodash.memoize": "4.1.2",
"lodash.union": "4.6.0",
"loud-rejection": "1.6.0",
"mem": "1.1.0",
"meow": "3.7.0",
"mkdirp": "0.5.1",
"mz": "2.6.0",
"ndjson": "1.5.0",
"node-gyp": "3.5.0",
"normalize-path": "2.0.1",
"npm-package-arg": "4.2.0",
"npm-registry-client": "7.4.5",
"os-homedir": "1.0.2",
"p-limit": "1.1.0",
"path-name": "1.0.0",
"pause-stream": "0.0.11",
"pnpm-default-reporter": "0.1.0",
"pnpm-file-reporter": "0.0.1",
"pnpm-install-checks": "1.1.0",
"pnpm-logger": "0.0.1",
"promisequence": "1.1.6",
"proper-lockfile": "2.0.0",
"rc": "1.1.6",
"read-pkg-up": "2.0.0",
"registry-auth-token": "3.1.0",
"registry-url": "3.1.0",
"rimraf-then": "1.0.1",
"semver": "5.3.0",
"sorted-object": "2.0.1",
"symlink-dir": "1.0.1",
"thenify": "3.2.1",
"unpack-stream": "1.1.0",
"update-notifier": "1.0.3",
"write-json-file": "2.0.0",
"write-pkg": "2.0.0"
},
"devDependencies": {
"@types/tape": "^4.2.28",
"anonymous-npm-registry-client": "^0.1.2",
"caw": "^2.0.0",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"docpress": "^0.7.1",
"exists-link": "^1.0.0",
"ghooks": "^2.0.0",
"git-update-ghpages": "^1.3.0",
"in-publish": "^2.0.0",
"isexe": "^1.1.2",
"istanbul": "^0.4.5",
"ncp": "^2.0.0",
"npm-run-all": "^4.0.1",
"npm-scripts-info": "^0.3.6",
"pnpm-registry-mock": "^0.1.1",
"rimraf": "^2.5.4",
"sepia": "^2.0.2",
"standard": "^8.6.0",
"tape": "^4.6.3",
"tape-promise": "^2.0.1",
"ts-node": "^2.0.0",
"tslint": "^4.3.1",
"typescript": "^2.1.5",
"validate-commit-msg": "^2.7.0"
},
"directories": {
"test": "test"
},
"homepage": "http://ghub.io/pnpm#readme",
"keywords": [
"dependency manager",
"install",
"modules",
"npm",
"package manager"
],
"license": "MIT",
"preferGlobal": true,
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/pnpm.git"
},
"scripts": {
"info": "npm-scripts-info",
"start": "npm run tsc -- --watch",
"?docs:build": "echo 'Generate the documentation website'",
"docs:build": "docpress build",
"?commit": "echo 'Run Git commit wizard'",
"commit": "git-cz",
"cover": "istanbul cover test/index.js",
"lint": "standard && tslint -c tslint.json --project .",
"pnpm-registry-mock": "pnpm-registry-mock",
"test:tap": "ts-node test",
"test:e2e": "npm-run-all -p -r pnpm-registry-mock test:tap",
"pretest": "rimraf ../.tmp/ && npm run tsc && pnpm-registry-mock prepare",
"test": "npm run lint && npm run test:e2e",
"prerelease": "npm run tsc && npm test",
"?release": "echo 'Publish pnpm'",
"release": "sh .scripts/release.sh",
"tsc": "rimraf lib && tsc",
"prepublish": "in-publish && echo 'You need to use \"npm run release\" to publish pnpm' && false || npm run tsc"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "node ./node_modules/validate-commit-msg/index.js"
}
}
}