-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "spatialmerge",
"version": "1.0.1",
"description": "Merging geospatial data in JS",
"type": "module",
"main": "./dist/spatialmerge.cjs.js",
"exports": {
"umd": "./dist/spatialmerge.min.js",
"require": "./dist/spatialmerge.cjs.js",
"default": "./dist/spatialmerge.esm.js"
},
"module": "./dist/spatialmerge.esm.js",
"browser": "./dist/spatialmerge.min.js",
"files": [
"dist/*.js",
"src/*.js"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build"
},
"keywords": [
"geospatial",
"spatial",
"turf.js",
"geopandas",
"merge",
"spatialmerge",
"attributejoin",
"join"
],
"author": "Christoph Pahmeyer <[email protected]>",
"license": "MIT",
"dependencies": {
"@turf/bbox": "^6.4.0",
"@turf/boolean-contains": "^6.4.0",
"@turf/boolean-crosses": "^6.4.0",
"@turf/boolean-intersects": "^6.4.0",
"@turf/boolean-overlap": "^6.4.0",
"@turf/boolean-within": "^6.4.0",
"@turf/clone": "^6.4.0",
"@turf/helpers": "^6.4.0",
"@turf/meta": "^6.4.0",
"flatbush": "^3.3.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@turf/tag": "^6.4.0",
"d3-dsv": "^3.0.1",
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"geojson-stream": "^0.1.0",
"rollup": "^2.52.2",
"rollup-plugin-terser": "^7.0.2"
}
}