Files
pnpm/packages/pkgs-graph/package.json

45 lines
1.1 KiB
JSON

{
"name": "pkgs-graph",
"version": "7.0.1",
"description": "Create a graph from an array of packages",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint src/**/*.ts test/**/*.ts",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/packages/pkgs-graph",
"license": "MIT",
"engines": {
"node": ">=14.6"
},
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/pkgs-graph#readme",
"devDependencies": {
"@types/ramda": "0.28.14",
"better-path-resolve": "1.0.0",
"pkgs-graph": "workspace:*"
},
"dependencies": {
"@pnpm/npm-package-arg": "^1.0.0",
"@pnpm/resolve-workspace-range": "workspace:*",
"ramda": "^0.28.0"
},
"funding": "https://opencollective.com/pnpm",
"keywords": [
"pnpm7"
],
"exports": {
".": "./lib/index.js"
}
}