-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 976 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": "@manubb/union-find",
"description": "a disjoint-set data structure",
"author": "Manuel Baclet <mbaclet@gmail.com>",
"version": "1.0.2",
"main": "union-find.js",
"scripts": {
"example:components": "node examples/connected-components/example.js",
"example:kruskal": "node examples/kruskal/example.js",
"example:hk": "node examples/hoshen-kopelman/example.js",
"build": "babel src --out-dir ."
},
"repository": {
"type": "git",
"url": "https://github.com/manubb/union-find.git"
},
"keywords": [
"union-find",
"disjoint-set",
"merge–find"
],
"license": "MIT",
"homepage": "https://github.com/manubb/union-find#readme",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"treeify": "^1.1.0"
},
"bugs": {
"url": "https://github.com/manubb/union-find/issues"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}