Files
pnpm/deps/graph-sequencer/package.json
2024-05-06 11:13:30 +02:00

40 lines
988 B
JSON

{
"name": "@pnpm/deps.graph-sequencer",
"version": "2.0.1",
"description": "Sort items in a graph using a topological sort",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"engines": {
"node": ">=18.12"
},
"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/deps/graph-sequencer",
"keywords": [
"pnpm9",
"pnpm",
"graph"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/deps/graph-sequencer#readme",
"funding": "https://opencollective.com/pnpm",
"devDependencies": {
"@pnpm/deps.graph-sequencer": "workspace:*"
},
"exports": {
".": "./lib/index.js"
}
}