twkb-parser
Version:
TWKB parser and serializer
42 lines (41 loc) • 1.17 kB
JSON
{
"name": "twkb-parser",
"version": "1.0.0",
"description": "TWKB parser and serializer",
"type": "module",
"main": "src/twkb-parser.js",
"exports": "./src/twkb-parser.js",
"files": [
"src",
"build"
],
"scripts": {
"test": "mocha ./test/test.js",
"lint": "standard './src/twkb-parser.js' 'test/test.js'",
"lint:fix": "standard --fix './src/twkb-parser.js' 'test/test.js'",
"build:iife": "npx esbuild ./src/twkb-parser.js --bundle --format=iife --global-name=TWKB --outfile=build/twkb-parser.iife.js",
"build:cjs": "npx esbuild ./src/twkb-parser.js --bundle --format=cjs --outfile=build/twkb-parser.cjs.js",
"build": "npm run build:iife && npm run build:cjs"
},
"devDependencies": {
"esbuild": "^0.25.5",
"mocha": "^11.5.0",
"standard": "^17.1.2"
},
"author": "ogus",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/ogus/twkb-parser.git"
},
"bugs": {
"url": "https://github.com/ogus/twkb-parser/issues"
},
"homepage": "https://github.com/ogus/twkb-parser#readme",
"keywords": [
"twkb",
"geojson",
"geometry",
"spatial"
]
}