forked from mapbox/csv2geojson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 831 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
{
"name": "csv2geojson",
"version": "5.0.2",
"description": "convert CSV files to GeoJSON",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mapbox/csv2geojson.git"
},
"scripts": {
"test": "eslint index.js && mocha -R spec",
"prepublish": "browserify -s csv2geojson index.js > csv2geojson.js"
},
"files": [
"csv2geojson.js",
"csv2geojson",
"index.js"
],
"bin": {
"csv2geojson": "csv2geojson"
},
"license": "MIT",
"devDependencies": {
"browserify": "^13.1.0",
"eslint": "3.4.0",
"eslint-config-mourner": "2.0.1",
"expect.js": "~0.3.1",
"mocha": "~3.0",
"mocha-phantomjs": "~4.1.0"
},
"dependencies": {
"optimist": "~0.6.1",
"d3-dsv": "1.0.1",
"sexagesimal": "0.5.0",
"concat-stream": "~1.5.1"
}
}