45 lines
1.2 KiB
JSON
Executable file
45 lines
1.2 KiB
JSON
Executable file
{
|
|
"name": "ngraph.graph",
|
|
"version": "20.0.1",
|
|
"description": "graph data structure",
|
|
"main": "index.js",
|
|
"jsdelivr": "dist/ngraph.graph.min.js",
|
|
"unpkg": "dist/ngraph.graph.min.js",
|
|
"scripts": {
|
|
"build": "browserify index.js -s createGraph -o dist/ngraph.graph.js && uglifyjs dist/ngraph.graph.js -o dist/ngraph.graph.min.js",
|
|
"test": "tap --branches=90 --lines=90 --statements=90 --functions=90 test/*.js",
|
|
"cover": "tap --branches=80 --lines=80 --statements=80 --functions=80 --coverage-report=html --no-browser test/*.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/anvaka/ngraph.graph.git"
|
|
},
|
|
"keywords": [
|
|
"graph",
|
|
"graph theory",
|
|
"edge",
|
|
"vertex",
|
|
"node",
|
|
"network",
|
|
"connection",
|
|
"ngraph",
|
|
"vivagraph",
|
|
"ngraphjs"
|
|
],
|
|
"author": "Andrei Kashcha",
|
|
"license": "BSD-3-Clause",
|
|
"bugs": {
|
|
"url": "https://github.com/anvaka/ngraph.graph/issues"
|
|
},
|
|
"devDependencies": {
|
|
"benchmark": "^2.1.4",
|
|
"browserify": "^17.0.0",
|
|
"eslint": "^7.25.0",
|
|
"ngraph.random": "^1.1.0",
|
|
"tap": "^16.0.1",
|
|
"uglify-js": "^3.13.5"
|
|
},
|
|
"dependencies": {
|
|
"ngraph.events": "^1.2.1"
|
|
}
|
|
}
|