forked from mapbox/tokml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 850 Bytes
/
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
{
"name": "tokml",
"version": "0.4.0",
"description": "convert geojson to kml",
"main": "index.js",
"scripts": {
"test": "tap test/*.js",
"build": "browserify -s tokml index.js > tokml.js",
"cov": "istanbul cover test/kml.test.js && coveralls < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/mapbox/tokml.git"
},
"keywords": [
"kml",
"geojson",
"geo",
"maps"
],
"bin": {
"tokml": "tokml"
},
"author": "Tom MacWright",
"license": "BSD-2-Clause",
"devDependencies": {
"glob": "~3.2.6",
"corslite": "0.0.5",
"tap": "~0.4.8",
"fuzzer": "0.0.0",
"coveralls": "~2.10.0",
"istanbul": "~0.2.11"
},
"dependencies": {
"minimist": "0.1.0",
"rw": "0.0.4",
"strxml": "mapbox/strxml",
"xml-escape": "^1.1.0"
}
}