-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 878 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
{
"name": "subgraph-isomorphism",
"version": "1.0.0",
"description": "a package for finding subgraph isomorphisms in a parent graph using Ullman's algorithm",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"istanbul": "^0.4.5",
"mathjs": "^3.16.3",
"performance-now": "^2.1.0"
},
"devDependencies": {
"mocha": "^3.5.0"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sdiemert/subgraph-isomorphism.git"
},
"keywords": [
"graph",
"subgraph",
"isomorphism",
"morphism",
"graph",
"theory"
],
"author": "sdiemert",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/sdiemert/subgraph-isomorphism/issues"
},
"homepage": "https://github.com/sdiemert/subgraph-isomorphism#readme"
}