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