forked from cschwarz/wkx
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.28 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
{
"name": "@syncpoint/wkx",
"version": "0.5.2",
"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 . && nyc 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",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Christian Schwarz",
"contributors": [
{
"name": "Syncpoint GmbH",
"email": "office@syncpoint.io",
"url": "https://syncpoint.io"
}
],
"license": "MIT",
"devDependencies": {
"async": "^3.2.0",
"browserify": "^17.0.0",
"coveralls": "^3.0.11",
"deep-eql": "^4.0.0",
"jshint": "^2.11.0",
"json-stringify-pretty-compact": "^3.0.0",
"mkdirp": "^1.0.3",
"mocha": "^8.4.0",
"nyc": "^15.0.0",
"pg": "^8.6.0",
"uglify-js": "^3.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/syncpoint/wkx.git"
},
"keywords": [
"wkt",
"wkb",
"ewkt",
"ewkb",
"twkb",
"geojson",
"ogc",
"geometry",
"geography",
"spatial"
],
"dependencies": {
"@types/node": "^15.0.2"
}
}