Files
pnpm/package.json
zkochan 6127592bde feat: use npm-registry-client
Use npm-registry-client for communicating with the npm registry.
This will guarantee that pnpm communicates to the registry the
same way npm does.

Close #367, PR #369
2016-09-24 01:43:59 +03:00

119 lines
2.9 KiB
JSON

{
"name": "pnpm",
"description": "A fast implementation of npm install",
"version": "0.35.0",
"author": "Rico Sta. Cruz <rico@ricostacruz.com>",
"bin": {
"pnpm": "lib/bin/pnpm.js"
},
"bugs": {
"url": "https://github.com/rstacruz/pnpm/issues"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"bin/",
"lib/",
".scripts/",
"cached_node_modules/"
],
"dependencies": {
"@zkochan/logger": "0.1.0",
"byline": "5.0.0",
"camelcase-keys": "4.0.0",
"chalk": "1.1.3",
"common-tags": "1.3.1",
"commondir": "1.0.1",
"cross-spawn": "^4.0.0",
"debug": "2.2.0",
"delocalize-dependencies": "0.1.0",
"gunzip-maybe": "1.3.1",
"is-ci": "1.0.9",
"is-retry-allowed": "1.1.0",
"json2yaml": "1.1.0",
"lockfile": "1.0.1",
"loud-rejection": "1.6.0",
"meow": "3.7.0",
"mkdirp": "0.5.1",
"mz": "2.4.0",
"node-gyp": "3.4.0",
"normalize-path": "2.0.1",
"npm-package-arg": "4.2.0",
"npm-registry-client": "7.2.1",
"observatory": "1.0.0",
"os-homedir": "1.0.1",
"pause-stream": "0.0.11",
"promisequence": "1.1.6",
"rc": "1.1.6",
"read-pkg-up": "1.0.1",
"registry-auth-token": "3.0.1",
"registry-url": "3.1.0",
"retry": "0.10.0",
"rimraf": "2.5.4",
"semver": "5.3.0",
"sorted-object": "2.0.1",
"supports-color": "3.1.2",
"tar-fs": "1.13.2",
"thenify": "3.2.0",
"update-notifier": "1.0.2"
},
"devDependencies": {
"caw": "2.0.0",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"docpress": "0.6.13",
"ghooks": "^1.3.2",
"git-update-ghpages": "1.3.0",
"isexe": "1.1.2",
"istanbul": "^0.4.5",
"ncp": "^2.0.0",
"nixt": "0.5.0",
"sepia": "2.0.1",
"standard": "8.1.0",
"tap-diff": "0.1.1",
"tape": "4.6.0",
"ts-node": "1.3.0",
"tslint": "3.15.1",
"typescript": "2.0.3",
"validate-commit-msg": "^2.7.0"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/rstacruz/pnpm#readme",
"keywords": [
"install",
"npm"
],
"license": "MIT",
"preferGlobal": true,
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rstacruz/pnpm.git"
},
"scripts": {
"start": "npm run tsc -- --watch",
"docs:build": "docpress build",
"commit": "git-cz",
"cover": "istanbul cover test/index.js",
"lint": "standard && tslint -c tslint.json ./src/**/*.ts ./test/**/*.ts",
"test": "npm run lint && ts-node test | tap-diff",
"posttest": "rimraf .tmp",
"prerelease": "npm test",
"release": "sh .scripts/release.sh",
"tsc": "rimraf lib && tsc",
"prepublish": "npm run tsc"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "node ./node_modules/validate-commit-msg/index.js"
}
}
}