Files
pnpm/packages/utils/package.json
2018-06-02 12:07:55 +03:00

60 lines
1.4 KiB
JSON

{
"name": "@pnpm/utils",
"description": "Utils for pnpm",
"version": "0.2.1",
"author": {
"name": "Zoltan Kochan",
"email": "z@kochan.io",
"url": "https://www.kochan.io/"
},
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/"
],
"peerDependencies": {
"@pnpm/logger": "^1.0.0"
},
"devDependencies": {
"@pnpm/logger": "^1.0.1",
"rimraf": "^2.6.2",
"tslint": "^5.4.2",
"typescript": "^2.9.1"
},
"directories": {
"test": "test"
},
"keywords": [],
"license": "MIT",
"engines": {
"node": ">=6"
},
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/utils",
"scripts": {
"start": "npm run tsc -- --watch",
"test": "npm run tsc && npm run lint",
"lint": "tslint -c tslint.json --project .",
"tsc": "rimraf lib && tsc",
"prepublishOnly": "npm run tsc"
},
"dependencies": {
"@pnpm/package-bins": "^1.0.0",
"@pnpm/types": "^1.7.0",
"@types/mz": "^0.0.32",
"@types/node": "^10.0.8",
"@types/ramda": "^0.25.28",
"dependency-path": "^1.2.1",
"fs-vacuum": "^1.2.10",
"mz": "^2.7.0",
"package-store": "^0.21.0",
"pnpm-shrinkwrap": "^6.4.0",
"ramda": "^0.25.0",
"read-package-json": "^2.0.13",
"rimraf-then": "^1.0.1",
"util.promisify": "^1.0.0"
}
}