-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
36 lines (36 loc) · 952 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
{
"name": "address-validator",
"version": "0.2.3",
"description": "Validate street addresses via google's geocoding API. Get back valid addresses with lat/lon coords and a set of inexact matches",
"keywords": [
"address",
"validator",
"address validator",
"google geocoding",
"geocoding",
"google maps"
],
"main": "index.js",
"homepage": "https://github.com/mkoryak/address-validator",
"scripts": {
"build": "rm -rf ./lib && coffee --compile --output lib/ src/",
"prepublish": "npm run build",
"test": "coffee test/test.coffee"
},
"author": {
"name": "Misha Koryak",
"url": "http://www.programmingdrunk.com"
},
"repository": {
"type": "git",
"url": "git://github.com/mkoryak/address-validator.git"
},
"devDependencies": {
"coffee-script": "~1.9.3"
},
"dependencies": {
"https-proxy-agent": "~2.2.1",
"request": "~2.47.0",
"underscore": "~1.12.1"
}
}