UNPKG

depth-first

Version:

Depth first search directed graphs

48 lines (47 loc) 1.05 kB
{ "name": "depth-first", "description": "Depth first search directed graphs", "version": "4.0.0", "main": "dist/index.js", "license": "MIT", "author": { "name": "Sigurd Fosseng", "email": "sigurd@fosseng.net", "url": "http://laat.io" }, "repository": { "type": "git", "url": "https://github.com/laat/depth-first.git" }, "scripts": { "prebuild": "rimraf dist", "build": "tsc", "test:readme": "readme-assert -p --require ts-node/register --main ./src/index.ts", "test:js": "jest", "test": "run-s test:*", "prepublish": "npm run build" }, "devDependencies": { "@types/jest": "25.1.3", "jest": "25.1.0", "mkdirp": "1.0.3", "npm-run-all": "4.1.5", "readme-assert": "6.0.3", "rimraf": "3.0.2", "ts-jest": "25.2.1", "ts-node": "8.6.2", "typescript": "3.7.5" }, "keywords": [ "depth first search", "dfs", "graphs", "graph", "dependencies", "directed graphs" ], "files": [ "dist/index.d.ts", "dist/index.js" ] }