forked from mapbox/tokml
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 797 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 797 Bytes
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
{
"name": "@maphubs/tokml",
"version": "0.6.1",
"description": "convert geojson to kml",
"main": "index.js",
"scripts": {
"test": "tap test/*.js",
"build": "browserify -s tokml index.js > tokml.js",
"cov": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/maphubs/tokml.git"
},
"keywords": [
"kml",
"geojson",
"geo",
"maps"
],
"bin": {
"tokml": "tokml"
},
"author": "Kristofor Carle",
"license": "BSD-2-Clause",
"devDependencies": {
"browserify": "^16.5.2",
"coveralls": "^3.1.1",
"fuzzer": "^0.2.1",
"glob": "^7.2.0",
"nyc": "^15.1.0",
"tap": "^15.1.6"
},
"dependencies": {
"minimist": "^1.2.5",
"rw": "^1.3.3"
}
}