package.json
1.2 KB
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
{
"name": "wkx",
"version": "0.4.1",
"description": "A WKT/WKB/EWKT/EWKB/TWKB/GeoJSON parser and serializer",
"main": "lib/wkx.js",
"types": "lib/wkx.d.ts",
"scripts": {
"test": "jshint . && mocha",
"build": "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": "^2.1.2",
"browserify": "^13.1.1",
"coveralls": "^2.11.15",
"deep-eql": "^2.0.1",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"json-stringify-pretty-compact": "^1.0.2",
"mocha": "^3.1.2",
"pg": "^6.1.0",
"uglify-js": "^2.7.4"
},
"repository": {
"type": "git",
"url": "http://github.com/cschwarz/wkx.git"
},
"keywords": [
"wkt",
"wkb",
"ewkt",
"ewkb",
"twkb",
"geojson",
"ogc",
"geometry",
"geography",
"spatial"
],
"dependencies": {
"@types/node": "^6.0.48"
},
"_from": "wkx@0.4.1",
"_resolved": "http://registry.npm.taobao.org/wkx/download/wkx-0.4.1.tgz"
}