graph-builder
Version:
A graph builder library for modeling abstract graph structures.
33 lines (32 loc) • 1.06 kB
JSON
{
"name": "graph-builder",
"version": "0.2.2",
"description": "A graph builder library for modeling abstract graph structures.",
"homepage": "https://github.com/sorohan/graph-builder",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {},
"devDependencies": {
"@microsoft/api-documenter": "^1.5.59",
"@microsoft/api-extractor": "^6.3.0",
"@types/tape": "^4.2.33",
"nyc": "^13.1.0",
"tape": "^4.9.2",
"ts-node": "^7.0.1",
"typescript": "^3.2.4"
},
"scripts": {
"build": "tsc",
"test": "tape -r ts-node/register **/*.spec.ts",
"cover": "nyc --reporter text --reporter html --report-dir coverage npm run test",
"docs": "rm -rf markdown && api-extractor run --config ./api-extractor.json && api-documenter markdown",
"new-docs": "rm -rf markdown && (api-extractor run --config ./api-extractor.json || true) && cp temp/graph-builder.api.ts ./etc"
},
"keywords": [
"graph",
"adt",
"guava"
],
"author": "Ben Sorohan",
"license": "SEE LICENSE IN LICENCE"
}