graphinius
Version:
Generic graph library in Typescript
65 lines (64 loc) • 1.59 kB
JSON
{
"scripts": {
"build": "gulp build",
"bundle": "gulp bundle",
"clean": "rm -rf coverage docs",
"doc": "typedoc --out docs lib",
"test:all": "jest -c jest.config.all.js",
"test:sync": "jest -c jest.config.js",
"test:async": "G_LOG=debug jest -c jest.config.async.js",
"test:performance": "G_LOG=debug jest -c jest.config.performance.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cassinius/graphinius.git"
},
"keywords": [
"graphs",
"typed graph",
"graph library",
"graph theory",
"graph analysis",
"network",
"networking",
"networking library",
"network mining",
"recommender",
"typed graph",
"attributed graph",
"mixed mode graph",
"heterogenous graph",
"node types",
"edge types",
"node feature vector",
"edge feature vector"
],
"name": "graphinius",
"version": "2.0.2",
"description": "Generic graph library in Typescript",
"main": "index.ts",
"author": "Bernd Malle",
"license": "MIT",
"bugs": {
"url": "https://github.com/cassinius/graphinius/issues"
},
"homepage": "https://github.com/cassinius/graphinius#readme",
"devDependencies": {
"@tensorflow/tfjs-node": "^2.7.0",
"@types/core-js": "^2.5.4",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.13",
"jest": "^26.6.3",
"json-loader": "^0.5.7",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typedoc": "^0.19.2",
"typescript": "^4.1.3"
},
"dependencies": {
"uuid": "^3.3.2"
},
"files": [
"lib/**/*"
]
}