mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-05 04:31:31 -05:00
93 lines
2.3 KiB
JSON
93 lines
2.3 KiB
JSON
{
|
|
"name": "pnpm",
|
|
"description": "A fast implementation of npm install",
|
|
"version": "0.23.0",
|
|
"author": "Rico Sta. Cruz <rico@ricostacruz.com>",
|
|
"bin": {
|
|
"pnpm": "bin/pnpm",
|
|
"pnpm-install": "bin/pnpm-install"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/rstacruz/pnpm/issues"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"bin"
|
|
],
|
|
"dependencies": {
|
|
"bluebird": "3.4.1",
|
|
"byline": "4.2.1",
|
|
"caw": "1.2.0",
|
|
"chalk": "1.1.3",
|
|
"commondir": "1.0.1",
|
|
"cross-spawn": "^4.0.0",
|
|
"debug": "2.2.0",
|
|
"got": "5.4.1",
|
|
"gunzip-maybe": "1.3.1",
|
|
"meow": "3.7.0",
|
|
"mkdirp": "0.5.1",
|
|
"mz": "2.4.0",
|
|
"node-gyp": "3.3.1",
|
|
"node-uuid": "1.4.7",
|
|
"npm-package-arg": "4.2.0",
|
|
"object-assign": "4.1.0",
|
|
"observatory": "1.0.0",
|
|
"rc": "1.1.6",
|
|
"read-pkg-up": "1.0.1",
|
|
"registry-auth-token": "2.1.1",
|
|
"registry-url": "3.1.0",
|
|
"rimraf": "2.5.2",
|
|
"semver": "5.1.1",
|
|
"sorted-object": "2.0.0",
|
|
"supports-color": "3.1.2",
|
|
"tar-fs": "1.13.0",
|
|
"thenify": "3.2.0",
|
|
"throat": "3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "6.10.1",
|
|
"babel-plugin-transform-es2015-arrow-functions": "6.8.0",
|
|
"babel-plugin-transform-es2015-literals": "6.8.0",
|
|
"docpress": "0.6.11",
|
|
"eslint": "2.13.0",
|
|
"eslint-config-standard": "5.3.1",
|
|
"eslint-plugin-standard": "1.3.2",
|
|
"git-update-ghpages": "1.3.0",
|
|
"in-publish": "2.0.0",
|
|
"nixt": "0.5.0",
|
|
"npm": "3.10.2",
|
|
"sepia": "2.0.1",
|
|
"tap-spec": "4.1.1",
|
|
"tape": "4.5.1",
|
|
"tape-eslint": "1.2.1"
|
|
},
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"homepage": "https://github.com/rstacruz/pnpm#readme",
|
|
"keywords": [
|
|
"install",
|
|
"npm"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"preferGlobal": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/rstacruz/pnpm.git"
|
|
},
|
|
"scripts": {
|
|
"build": "if [ ! -d lib~ ]; then mv lib lib~; babel --source-maps inline -D lib~ -d lib; fi",
|
|
"test": "node test | tap-spec",
|
|
"test:babel": "babel-node test | tap-spec",
|
|
"prepublish": "if in-publish; then npm run build; fi",
|
|
"postpublish": "rm -rf lib; mv lib~ lib"
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
"transform-es2015-arrow-functions",
|
|
"transform-es2015-literals"
|
|
]
|
|
}
|
|
}
|