-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.84 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
{
"name": "minify-geojson",
"version": "1.4.4",
"description": "Minify (compress) a GeoJSON by replacing the attribute keys with a shorter representation (typically, its first letter). You can also reduce the number of decimals for coordinates, and whitelist and blacklist certain properties.",
"main": "./dist/minify-geojson-cli.js",
"types": "./dist/minify-geojson-cli.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/TNOCS/minify-geojson.git"
},
"keywords": [
"GeoJSON",
"minify",
"compress"
],
"bin": {
"minify-geojson": "./bin/run.js"
},
"scripts": {
"start": "tsc -w",
"clean": "rimraf ./dist",
"build": "npm run clean && tsc",
"dry-run": "npm publish --dry-run",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm publish && git push --follow-tags"
},
"author": {
"name": "Erik Vullings",
"email": "erik.vullings@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/TNOCS/minify-geojson/issues"
},
"homepage": "https://github.com/TNOCS/minify-geojson#readme",
"dependencies": {
"command-line-args": "~5.2.1",
"command-line-usage": "~6.1.3",
"JSONStream": "~1.3.5",
"proj4": "~2.8.0",
"pump": "~3.0.0",
"reproject": "~1.2.6",
"shapefile": "~0.6.6",
"topojson-server": "^3.0.1",
"topojson-simplify": "^3.0.3"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/geojson": "^7946.0.8",
"@types/node": "^17.0.34",
"@types/proj4": "^2.5.2",
"@types/pump": "^1.1.1",
"@types/shapefile": "^0.6.1",
"@types/topojson": "^3.2.3",
"@types/topojson-server": "^3.0.1",
"@types/topojson-simplify": "^3.0.1",
"@types/jsonstream": "^0.8.30",
"rimraf": "3.0.2",
"typescript": "^4.6.4"
}
}