Files
pnpm/package.json
2017-11-10 21:41:36 +02:00

127 lines
3.1 KiB
JSON

{
"name": "package-store",
"description": "A storage for npm packages. Used by pnpm",
"version": "0.5.0",
"author": {
"name": "Zoltan Kochan",
"email": "z@kochan.io",
"url": "https://www.kochan.io/"
},
"bugs": {
"url": "https://github.com/pnpm/package-store/issues"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/"
],
"peerDependencies": {
"@pnpm/logger": "^1.0.0"
},
"dependencies": {
"@types/load-json-file": "^2.0.5",
"@types/node": "^8.0.34",
"@types/ramda": "^0.25.0",
"@types/retry": "^0.10.1",
"@types/semver": "^5.3.32",
"credentials-by-uri": "^1.0.0",
"dint": "^1.0.0",
"drive-by-path": "^1.0.0",
"encode-registry": "^1.1.0",
"execa": "^0.8.0",
"fs-write-stream-atomic": "^1.0.10",
"load-json-file": "^4.0.0",
"mkdirp-promise": "^5.0.1",
"mz": "^2.6.0",
"normalize-path": "^2.1.1",
"normalize-registry-url": "^1.0.0",
"normalize-ssh": "^1.0.0",
"os-homedir": "^1.0.2",
"p-limit": "^1.1.0",
"p-queue": "^2.2.0",
"parse-npm-tarball-url": "^1.0.1",
"path-absolute": "^1.0.0",
"path-exists": "^3.0.0",
"ramda": "^0.25.0",
"read-package-json": "^2.0.10",
"rename-overwrite": "^1.0.0",
"retry": "^0.10.1",
"rimraf-then": "^1.0.1",
"semver": "^5.3.0",
"ssri": "^5.0.0",
"symlink-dir": "^1.0.3",
"thenify": "^3.3.0",
"unpack-stream": "^2.1.0",
"write-json-file": "^2.2.0"
},
"devDependencies": {
"@pnpm/logger": "^1.0.0",
"@types/nock": "^8.2.1",
"@types/tape": "^4.2.30",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.14.3",
"in-publish": "^2.0.0",
"nock": "^9.0.14",
"npm-registry-client": "^8.4.0",
"npm-scripts-info": "^0.3.6",
"package-preview": "^1.0.0",
"rimraf": "^2.6.1",
"tape": "^4.7.0",
"ts-node": "^3.3.0",
"tslint": "^5.4.2",
"typescript": "^2.4.1",
"validate-commit-msg": "^2.7.0"
},
"directories": {
"test": "test"
},
"homepage": "https://pnpm.js.org",
"keywords": [
"store",
"storage",
"global store",
"maching store",
"central storage",
"cache",
"packages"
],
"license": "MIT",
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/package-store.git"
},
"scripts": {
"info": "npm-scripts-info",
"start": "npm run tsc -- --watch",
"?cz": "echo 'Run Git commit wizard'",
"cz": "git-cz",
"commitmsg": "validate-commit-msg",
"fix": "tslint -c tslint.json --project . --fix",
"lint": "tslint -c tslint.json --project .",
"pretest": "rimraf .tmp",
"test": "npm run lint && preview && ts-node test",
"tsc": "rimraf lib && tsc",
"prepublishOnly": "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"
]
}
}