-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "isomorphism",
"version": "0.4.0",
"description": "Find subgraph isomorphisms with Ullman's 1976 algorithm.",
"main": "lib/index.js",
"scripts": {
"flow": "flow",
"build:clean": "rimraf lib",
"build:lib": "babel -d lib/ src/",
"build:flow": "flow-copy-source -v src lib",
"build": "npm run build:clean && npm run build:lib && npm run build:flow",
"test:mocha": "mocha",
"test": "npm run build && npm run test:mocha",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bwestergard/isomorphism.git"
},
"keywords": [
"graph",
"subgraph",
"isomorphism",
"matching",
"ullman"
],
"dependencies": {
"ramda": "^0.21.0"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"flow-bin": "^0.54.0",
"flow-copy-source": "^1.1.0",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"standard": "^8.6.0"
},
"author": "Bjorn Westergard",
"license": "MIT"
}