Files
pnpm/package.json
Zoltan Kochan bfb76a5caf feat(install): use the spec for temp dir name
It is easier to debug when the directory names are
meaningful in the `.tmp` dir.

PR #335
2016-08-31 11:26:11 +03:00

105 lines
2.4 KiB
JSON

{
"name": "pnpm",
"description": "A fast implementation of npm install",
"version": "0.28.0",
"author": "Rico Sta. Cruz <rico@ricostacruz.com>",
"bin": {
"pnpm": "bin/pnpm.js"
},
"bugs": {
"url": "https://github.com/rstacruz/pnpm/issues"
},
"files": [
"lib",
"bin"
],
"dependencies": {
"byline": "5.0.0",
"camelcase-keys": "3.0.0",
"caw": "2.0.0",
"chalk": "1.1.3",
"commondir": "1.0.1",
"cross-spawn": "^4.0.0",
"debug": "2.2.0",
"got": "6.3.0",
"gunzip-maybe": "1.3.1",
"is-ci": "1.0.9",
"is-retry-allowed": "1.1.0",
"lockfile": "1.0.1",
"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",
"observatory": "1.0.0",
"os-homedir": "1.0.1",
"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",
"sanitize-filename": "1.6.0",
"semver": "5.3.0",
"sorted-object": "2.0.0",
"supports-color": "3.1.2",
"tar-fs": "1.13.2",
"thenify": "3.2.0",
"throat": "3.0.0"
},
"devDependencies": {
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"docpress": "0.6.13",
"eslint": "3.4.0",
"eslint-config-standard": "6.0.0",
"eslint-plugin-promise": "2.0.1",
"eslint-plugin-standard": "2.0.0",
"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",
"tap-spec": "4.1.1",
"tape": "4.6.0",
"validate-commit-msg": "^2.7.0"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/rstacruz/pnpm#readme",
"keywords": [
"install",
"npm"
],
"license": "MIT",
"main": "index.js",
"preferGlobal": true,
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rstacruz/pnpm.git"
},
"scripts": {
"docs:build": "docpress build",
"commit": "git-cz",
"cover": "istanbul cover test/index.js",
"lint": "eslint bin/ test/ lib/",
"test": "npm run lint && node test | tap-spec",
"posttest": "rimraf .tmp"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "node ./node_modules/validate-commit-msg/index.js"
}
}
}