-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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": "idb-rbush",
"version": "3.0.0",
"description": "High-performance 2D spatial index for rectangles (based on R*-tree with bulk loading and bulk insertion algorithms) with IndexedDB integration",
"homepage": "https://github.com/codeart1st/idb-rbush",
"repository": {
"type": "git",
"url": "git://github.com/codeart1st/idb-rbush.git"
},
"keywords": [
"spatial",
"tree",
"search",
"rectangle",
"index",
"math",
"idb",
"indexeddb"
],
"author": "Paul Lange",
"license": "MIT",
"main": "dist/rbush.js",
"module": "src/index.mjs",
"types": "index.d.ts",
"files": [
"dist/rbush.js",
"index.js",
"index.d.ts"
],
"scripts": {
"test": "jest",
"cov": "jest --coverage",
"build": "webpack --mode=production",
"prepare": "npm run build"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"@babel/core": "^7.2.2",
"babel-jest": "^28.1.3",
"fake-indexeddb": "^4.0.0",
"jest": "^28.1.3",
"terser-webpack-plugin": "^5.3.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"quickselect": "^2.0.0"
}
}