-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "array-set-ops",
"version": "0.5.2",
"description": "Extremely fast set and map/reduce operations for Arrays and Sets plus CartesianProducts",
"type": "module",
"source": "src/index.js",
"browser": "browser/array-set-ops.js",
"main": "index.js",
"scripts": {
"test": "parcel build && c8 node_modules/mocha/bin/_mocha",
"benchmark": "parcel build && node ./test/benchmark/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anywhichway/array-set-ops.git"
},
"keywords": [
"set",
"intersection",
"union",
"cartesain",
"difference",
"symmetric",
"superset",
"subset"
],
"author": "Simon Y. Blackwell",
"license": "MIT",
"bugs": {
"url": "https://github.com/anywhichway/array-set-ops/issues"
},
"homepage": "https://github.com/anywhichway/array-set-ops#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"big-cartesian": "^4.7.0",
"c8": "^7.12.0",
"chai": "^4.3.7",
"fast_array_intersect": "^1.1.0",
"fast-array-diff": "^1.0.1",
"fast-cartesian": "^7.6.0",
"mocha": "^10.2.0",
"parcel": "^2.8.3"
}
}