-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.29 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
{
"name": "intersector",
"version": "2.5.1",
"description": "Superfast and small intersection supporting primitives and objects. Up to 3x faster than other libraries. In the age of big data, you need it.",
"type": "module",
"source": "./src/index.js",
"main": "./index.js",
"scripts": {
"test": "parcel build && c8 node_modules/mocha/bin/_mocha",
"prepublish": "parcel build",
"build": "parcel build",
"benchmark": "parcel build && node ./test/benchmark/index.js",
"simulation": "parcel build && node ./test/benchmark/index2.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anywhichway/intersector.git"
},
"keywords": [
"intersect",
"intersection",
"fast-array-intersect",
"benvie",
"lovasoa",
"lodash"
],
"author": "Simon Y. Blackwell <syblackwell@anywhichway.com> (http://www.github.com/anywhichway)",
"license": "MIT",
"bugs": {
"url": "https://github.com/anywhichway/intersector/issues"
},
"homepage": "https://github.com/anywhichway/intersector#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"c8": "^7.12.0",
"chai": "^4.2.0",
"fast_array_intersect": "latest",
"lodash": "latest",
"mocha": "^10.2.0",
"parcel": "^2.8.3"
},
"dependencies": {
"mkdirp": "^0.5.1"
}
}