forked from mourner/rbush
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
85 lines (85 loc) · 2.11 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "rbush-3d",
"version": "0.0.4",
"description": "High-performance 3D spatial index for cuboids (based on R*-tree with bulk loading and bulk insertion algorithms)",
"homepage": "https://github.com/eronana/rbush-3d",
"repository": {
"type": "git",
"url": "git://github.com/eronana/rbush-3d.git"
},
"keywords": [
"spatial",
"tree",
"search",
"rectangle",
"index",
"math"
],
"author": "Vladimir Agafonkin",
"contributors": [
"Eronana"
],
"license": "MIT",
"main": "dist/index.js",
"devDependencies": {
"@types/benchmark": "^1.0.31",
"benchmark": "^2.1.0",
"browserify": "^14.1.0",
"budo": "^10.0.4",
"coveralls": "^3.0.0",
"eslint": "^3.18.0",
"eslint-config-mourner": "^2.0.1",
"faucet": "0.0.1",
"nyc": "^12.0.2",
"regl": "^1.3.0",
"regl-camera": "^2.1.1",
"tape": "^4.5.1",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "^2.9.2",
"uglify-js": "^2.6.4"
},
"scripts": {
"rawtest": "ts-node test/test.ts",
"test": "npm run rawtest | faucet",
"lint": "tslint -p tsconfig.build.json",
"perf": "ts-node bench/perf.ts",
"cover": "nyc npm run rawtest",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json --watch",
"build-min": "npm run build && browserify dist/index.js -s RBush3D | uglifyjs -c warnings=false -m > dist/rbush3d.min.js",
"prepublish": "npm run build && npm run build-min",
"viz": "npm run build && budo viz/viz3d.js --open"
},
"eslintConfig": {
"extends": "mourner",
"rules": {
"new-cap": 0,
"consistent-return": 0
}
},
"dependencies": {
"@types/node": "^10.5.1",
"@types/tape": "^4.2.32",
"quickselect": "^1.0.0"
},
"nyc": {
"check-coverage": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"include": [
"src/**/*"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
}
}