You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
{
|
|
"name": "wkx",
|
|
"version": "0.4.8",
|
|
"description": "A WKT/WKB/EWKT/EWKB/TWKB/GeoJSON parser and serializer",
|
|
"main": "lib/wkx.js",
|
|
"types": "lib/wkx.d.ts",
|
|
"files": [
|
|
"dist/",
|
|
"lib/"
|
|
],
|
|
"scripts": {
|
|
"test": "jshint . && mocha",
|
|
"build": "mkdirp ./dist && browserify -r buffer -r ./lib/wkx.js:wkx ./lib/wkx.js > ./dist/wkx.js && uglifyjs -c -m -- ./dist/wkx.js > ./dist/wkx.min.js",
|
|
"coveralls": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
|
|
},
|
|
"author": "Christian Schwarz",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"async": "^3.1.0",
|
|
"browserify": "^16.3.0",
|
|
"coveralls": "^3.0.5",
|
|
"deep-eql": "^4.0.0",
|
|
"istanbul": "^0.4.5",
|
|
"jshint": "^2.10.2",
|
|
"json-stringify-pretty-compact": "^2.0.0",
|
|
"mkdirp": "^0.5.1",
|
|
"mocha": "^6.2.0",
|
|
"pg": "^7.12.0",
|
|
"uglify-js": "^3.6.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/cschwarz/wkx.git"
|
|
},
|
|
"keywords": [
|
|
"wkt",
|
|
"wkb",
|
|
"ewkt",
|
|
"ewkb",
|
|
"twkb",
|
|
"geojson",
|
|
"ogc",
|
|
"geometry",
|
|
"geography",
|
|
"spatial"
|
|
],
|
|
"dependencies": {
|
|
"@types/node": "*"
|
|
}
|
|
}
|
|
|