-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 737 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 737 Bytes
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
{
"name": "@seregpie/bron-kerbosch",
"version": "1.0.1",
"description": "An implementation of the Bron-Kerbosch algorithm to find the maximal cliques in an undirected graph.",
"keywords": [],
"license": "MIT",
"author": "Sergej Sintschilin <seregpie@gmail.com>",
"files": [
"index.d.ts"
],
"main": "index.js",
"types": "index.d.ts",
"repository": "github:SeregPie/BronKerbosch",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "node test"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-babel": "^5.3.0",
"eslint": "^7.29.0",
"eslint-config-seregpie": "^1.0.2",
"rollup": "^2.52.2",
"rollup-plugin-terser": "^7.0.2"
}
}