-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
37 lines (37 loc) · 839 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": "csvgeocode",
"version": "2.3.1",
"description": "Bulk geocode addresses in a CSV.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/veltman/csvgeocode.git"
},
"keywords": ["geocode", "geocoding", "address", "csv"],
"bin": {
"csvgeocode": "./bin/csvgeocode"
},
"author": "Noah Veltman (@veltman)",
"license": "MIT",
"bugs": {
"url": "https://github.com/veltman/csvgeocode/issues"
},
"homepage": "https://github.com/veltman/csvgeocode",
"dependencies": {
"dsv": "0.0.4",
"extend": "^2.0.0",
"mustache": "^2.2.1",
"queue-async": "^1.0.7",
"request": "^2.53.0",
"yargs": "^3.0.4"
},
"devDependencies": {
"dotenv": "^1.2.0"
}
}