UNPKG

sequence-graph-data-structure

Version:
43 lines 1.34 kB
{ "name": "sequence-graph-data-structure", "version": "2.0.6", "description": "A graph data structure with topological sort.", "main": "index.js", "files": [ "graph-data-structure.js", "index.d.ts" ], "typings": "index.d.ts", "scripts": { "build": "tsc", "test": "npm run build && env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' ts-mocha test.ts", "browserify": "browserify index.js -s GraphDataStructure -o graph-data-structure.js", "prepublishOnly": "npm run build && npm run browserify" }, "repository": { "type": "git", "url": "git+https://github.com/sequence-so/graph-data-structure.git" }, "keywords": [ "graph", "data", "structures", "algorithms" ], "author": "Curran Kelleher", "license": "MIT", "bugs": { "url": "https://github.com/sequence-so/graph-data-structure/issues" }, "homepage": "https://github.com/sequence-so/graph-data-structure#readme", "devDependencies": { "@types/assert": "^1.5.4", "@types/mocha": "^8.2.2", "@types/node": "^15.3.1", "browserify": "^17.0.0", "graph-diagrams": "^0.5.0", "mocha": "^8.4.0", "ts-mocha": "^8.0.0", "typescript": "^4.2.4" } }