Files
pnpm/packages/pkgs-graph/package.json
Zoltan Kochan 97b986fbc8 feat: Node.js v10 is not supported anymore (#3121)
* feat: Node.js v10 is not supported anymore

BREAKING CHANGE:
2021-02-04 03:54:58 +02:00

39 lines
1.1 KiB
JSON

{
"name": "pkgs-graph",
"version": "5.2.0",
"description": "Create a graph from an array of packages",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint -c ../../eslint.json src/**/*.ts test/**/*.ts",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build"
},
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/pkgs-graph",
"author": "Zoltan Kochan <z@kochan.io> (https://www.kochan.io/)",
"license": "MIT",
"engines": {
"node": ">=12.17"
},
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/master/packages/pkgs-graph#readme",
"devDependencies": {
"@types/ramda": "^0.27.35",
"better-path-resolve": "1.0.0"
},
"dependencies": {
"@pnpm/resolve-workspace-range": "workspace:1.0.1",
"@zkochan/npm-package-arg": "^1.0.2",
"ramda": "^0.27.1"
},
"funding": "https://opencollective.com/pnpm"
}