-
Notifications
You must be signed in to change notification settings - Fork 327
/
package.json
60 lines (60 loc) · 1.2 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
58
59
60
{
"name": "@mapbox/togeojson",
"version": "0.16.2",
"description": "convert KML and GPX to GeoJSON",
"main": "togeojson.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "eslint togeojson.js && 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": "~1.4.3",
"coveralls": "~3.1.1",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.3.0",
"glob": "^7.0.5",
"istanbul": "~0.4.4",
"tape": "~4.6.0"
},
"bin": {
"togeojson": "togeojson"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/togeojson.git"
},
"browser": {
"xmldom": false
},
"browserify": {
"transform": [
"brfs"
]
},
"license": "BSD-2-Clause",
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"concat-stream": "~2.0.0",
"minimist": "1.2.8"
},
"keywords": [
"kml",
"geojson",
"gpx",
"geo",
"parser",
"formatter",
"input",
"leaflet",
"maps"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}