forked from anvaka/ngraph.graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 862 Bytes
/
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
{
"name": "ngraph.graph",
"version": "18.0.3",
"description": "graph data structure",
"main": "index.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 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": {
"browserify": "^16.4.0",
"tap": "^14.6.1",
"uglify-js": "^3.6.0"
},
"dependencies": {
"ngraph.events": "1.0.0"
}
}