-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.3 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
{
"name": "grid-to-matrix",
"version": "1.4.0",
"description": "Takes a GeoJSON pointGrid and returns a correspondent matrix array of 'property' values of the points",
"main": "grid-to-matrix.js",
"module": "index",
"jsnext:main": "index",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"grid-to-matrix.js",
"grid-to-matrix.min.js"
],
"scripts": {
"pretest": "rollup -c rollup.config.js",
"test": "node test.js",
"bench": "node bench.js",
"lint": "eslint index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/stebogit/grid-to-matrix"
},
"keywords": [
"geojson",
"grid",
"points",
"array",
"matrix"
],
"author": "Stefano Borghi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stebogit/grid-to-matrix/issues"
},
"devDependencies": {
"@turf/point-grid": "*",
"@types/geojson": "*",
"benchmark": "*",
"eslint": "*",
"eslint-config-mourner": "*",
"load-json-file": "*",
"rollup": "*",
"rollup-plugin-node-resolve": "*",
"rollup-plugin-uglify": "*",
"tape": "*",
"typescript": "*",
"write-json-file": "*"
},
"dependencies": {
"@turf/helpers": "5.x",
"@turf/invariant": "5.x",
"@turf/meta": "5.x"
}
}