-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 KB
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
{
"name": "geojson_db",
"version": "0.3.4",
"description": "A high-performance npm package for rapid spatial queries on GeoJSON files",
"main": "index.js",
"scripts": {
"build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build",
"build-release": "npm run build -- --release",
"install": "npm run build-release",
"test": "cargo test",
"upgrade": "cargo update; npm-check-updates -u && rm -f package-lock.json && rm -rf node_modules; npm i"
},
"author": {
"name": "Michael Kreil",
"email": "github@michael-kreil.de",
"url": "https://github.com/MichaelKreil"
},
"license": "MIT",
"type": "module",
"dependencies": {
"cargo-cp-artifact": "^0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/SWRdata/geojson_db.git"
},
"bugs": {
"url": "https://github.com/SWRdata/geojson_db/issues"
},
"homepage": "https://github.com/SWRdata/geojson_db#readme",
"keywords": [
"geojson",
"database",
"spatial",
"queries",
"neon",
"rust",
"nodejs"
],
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"files": [
"Cargo.lock",
"Cargo.toml",
"index.js",
"src/**"
],
"devDependencies": {
"npm-check-updates": "^16.14.15"
}
}