Files
pnpm/package.json
2016-11-10 02:22:27 +02:00

143 lines
3.8 KiB
JSON

{
"name": "pnpm",
"description": "A fast implementation of npm install",
"version": "0.45.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": [
"lib/"
],
"dependencies": {
"@zkochan/cmd-shim": "2.0.1",
"@zkochan/logger": "0.1.0",
"arr-flatten": "1.0.1",
"byline": "5.0.0",
"cache-manager": "2.2.0",
"cache-manager-fs": "1.0.5",
"camelcase-keys": "4.0.0",
"chalk": "1.1.3",
"common-tags": "1.3.1",
"commondir": "1.0.1",
"cross-spawn": "^5.0.0",
"debug": "2.2.0",
"delocalize-dependencies": "0.1.0",
"exists-file": "3.0.0",
"find-up": "2.0.0",
"is-ci": "1.0.10",
"is-retry-allowed": "1.1.0",
"js-yaml": "3.6.1",
"json2yaml": "1.1.0",
"link-dir": "1.0.2",
"load-json-file": "2.0.0",
"lockfile": "1.0.2",
"lodash.clonedeep": "4.5.0",
"lodash.memoize": "4.1.2",
"loud-rejection": "1.6.0",
"mem": "1.1.0",
"meow": "3.7.0",
"mkdirp": "0.5.1",
"mz": "2.5.0",
"node-gyp": "3.4.0",
"normalize-path": "2.0.1",
"npm-package-arg": "4.2.0",
"npm-registry-client": "7.3.0",
"observatory": "1.0.0",
"os-homedir": "1.0.2",
"path-name": "1.0.0",
"pause-stream": "0.0.11",
"pnpm-install-checks": "1.0.1",
"promisequence": "1.1.6",
"rc": "1.1.6",
"read-pkg-up": "1.0.1",
"registry-auth-token": "3.1.0",
"registry-url": "3.1.0",
"retry": "0.10.0",
"rimraf-then": "1.0.0",
"semver": "5.3.0",
"sorted-object": "2.0.1",
"supports-color": "3.1.2",
"thenify": "3.2.1",
"unpack-stream": "1.0.1",
"update-notifier": "1.0.2",
"write-pkg": "2.0.0"
},
"devDependencies": {
"@zkochan/sinopia": "1.0.0",
"anonymous-npm-registry-client": "0.1.2",
"cash-rm": "0.2.0",
"caw": "2.0.0",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"docpress": "0.7.1",
"exists-link": "1.0.0",
"ghooks": "^1.3.2",
"git-update-ghpages": "1.3.0",
"in-publish": "2.0.0",
"isexe": "1.1.2",
"istanbul": "^0.4.5",
"ncp": "^2.0.0",
"nixt": "0.5.0",
"npm-run-all": "3.1.0",
"sepia": "2.0.1",
"standard": "8.4.0",
"tap-diff": "0.1.1",
"tape": "4.6.2",
"tape-promise": "2.0.0",
"ts-node": "1.6.1",
"tslint": "3.15.1",
"typescript": "2.0.7",
"validate-commit-msg": "^2.7.0"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/rstacruz/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/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 --project .",
"sinopia": "sinopia -c ./sinopia/config.yaml",
"test:tap": "sh test/packages/publish-all.sh && ts-node test | tap-diff",
"test:e2e": "node node_modules/npm-run-all/bin/npm-run-all -p -r sinopia test:tap",
"test": "npm run lint && npm run test:e2e",
"posttest": "rm -rf .tmp",
"prerelease": "npm run tsc && npm test",
"release": "sh .scripts/release.sh",
"tsc": "rm -rf 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"
}
}
}