-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 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
44
45
46
47
48
49
{
"name": "geco",
"version": "0.11.1",
"description": "Geco, a (Constant Amortized Time) recursive generator* for k-combinations, chosen from a given set S of n elements, with and without replacement.",
"homepage": "https://github.com/rootslab/geco",
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/rootslab/geco.git"
},
"keywords": [
"geco",
"combinations",
"combinations with repetition",
"k-combinations",
"multiset",
"compositions",
"compositions with restricted parts",
"colex",
"colexicographic order",
"CAT",
"combinatorics",
"generators",
"poker"
],
"author": {
"name": "Guglielmo Ferri",
"email": "44gatti@gmail.com"
},
"dependencies": {
"toni": ">=0.6.2"
},
"devDependencies": {
"dado": ">=0.2.0"
},
"main": "index",
"engines": {
"node": ">=6.x.x"
},
"scripts": {
"test": "node test/run.js",
"bench": "bash bench/run.sh"
},
"license": "MIT",
"readmeFilename": "Readme.md",
"bugs": {
"url": "https://github.com/rootslab/geco/issues"
}
}