forked from mapbox/togeojson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1016 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "togeojson",
"version": "0.10.1",
"description": "convert KML and GPX to GeoJSON",
"main": "togeojson.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tape test/*.js",
"cov": "istanbul cover test/index.js && coveralls < ./coverage/lcov.info",
"browser": "browserify -t brfs test/index.js > test/bundle.js"
},
"devDependencies": {
"brfs": "~0.2.1",
"coveralls": "~2.10.0",
"glob": "^4.2.1",
"istanbul": "~0.2.11",
"tape": "~3.0.3"
},
"bin": {
"togeojson": "togeojson"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/togeojson.git"
},
"browser": {
"xmldom": false
},
"browserify": {
"transform": [
"brfs"
]
},
"license": "BSD",
"dependencies": {
"xmldom": "~0.1.19",
"concat-stream": "~1.4.5",
"minimist": "0.0.8"
},
"keywords": [
"kml",
"geojson",
"gpx",
"geo",
"parser",
"formatter",
"input",
"leaflet",
"maps"
]
}