-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"scripts": {
"build": "gulp build",
"bundle": "gulp bundle",
"clean": "rm -rf coverage docs",
"doc": "typedoc --out docs lib",
"test": "jest -c jest.config.js",
"test:watch": "yarn test -- --watch",
"test:perf": "G_LOG=debug jest -c jest.config.perf.js",
"test:all": "jest -c jest.config.all.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.20",
"@types/node": "^14.14.28",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typedoc": "^0.20.25",
"typescript": "^4.1.5"
},
"dependencies": {
"uuid": "^3.3.2"
},
"files": [
"lib/**/*",
"docs/**/*"
]
}