-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 895 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 895 Bytes
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
{
"name": "graphlabs.core.visualizer",
"description": "GraphLabs Visualizer for graphs in the module",
"version": "0.0.71",
"author": "GraphLabs",
"keywords": [
"graphlabs",
"graph",
"default",
"visualizer"
],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/eakarpov/GraphLabsSuite.Core.GraphVisualizer.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"dependencies": {
"@types/d3": "^5.7.2",
"@types/react": "^16.9.2",
"d3": "^5.12.0",
"graphlabs.core.graphs": "^0.1.10",
"react": "^16.9.0",
"typescript": "^3.7.0"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"chai": "^4.1.0",
"mocha": "^3.5.0",
"ts-node": "^3.2.0"
},
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register test/**/*.test.ts"
}
}