-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
44 lines (44 loc) · 1.03 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
{
"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 --allow-incomplete-coverage 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": "^18.1.4",
"uglify-js": "^3.13.5"
},
"dependencies": {
"ngraph.events": "^1.2.1"
}
}