forked from ehmicky/big-cartesian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.24 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "big-cartesian",
"version": "2.0.0",
"main": "build/src/main.js",
"files": [
"build/src",
"examples",
"!*~"
],
"scripts": {
"test": "gulp test"
},
"husky": {
"hooks": {
"pre-push": "gulp -LL check --full"
}
},
"description": "Cartesian product for big inputs",
"keywords": [
"cartesian",
"cartesian-product",
"performance",
"sets",
"functional-programming",
"functional",
"product",
"iterable",
"algorithm",
"data-structures",
"es6",
"javascript",
"library",
"nodejs",
"lodash",
"lodashjs",
"lodash-fp",
"cartesian-products",
"combinatorics",
"combinations"
],
"license": "Apache-2.0",
"homepage": "https://git.io/fjxRh",
"repository": "ehmicky/big-cartesian",
"bugs": {
"url": "https://github.com/ehmicky/big-cartesian/issues"
},
"author": "ehmicky <[email protected]> (https://github.com/ehmicky)",
"directories": {
"doc": "docs",
"lib": "src",
"test": "test"
},
"dependencies": {},
"devDependencies": {
"@ehmicky/dev-tasks": "^0.31.40",
"ava": "^3.8.0",
"gulp": "^4.0.2",
"husky": "^4.2.5",
"pretty-format": "^25.4.0"
},
"engines": {
"node": ">=10.17.0"
}
}