-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 790 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 790 Bytes
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
{
"name": "reproject",
"version": "1.2.7",
"description": "Reproject GeoJSON from one projection/CRS to another",
"repository": "git@github.com:perliedman/reproject.git",
"main": "index.js",
"scripts": {
"test": "mocha -R spec",
"bundle": "rollup -c"
},
"bin": {
"reproject": "cli.js"
},
"keywords": [
"geojson",
"projection",
"proj4",
"maps"
],
"author": "Per Liedman",
"license": "MIT",
"dependencies": {
"concat-stream": "^2.0.0",
"event-stream": "^4.0.0",
"geojson-stream": "0.1.0",
"minimist": "^1.2.5",
"proj4": "^2.6.2"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^7.2.0",
"rollup": "^2.26.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^6.1.0"
}
}