forked from mkoryak/address-validator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 852 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
{
"name": "@debitoor/address-validator",
"version": "1.1.0",
"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"
],
"scripts": {
"postversion": "git push && git push --tags",
"preversion": "npm test",
"test": "coffee test.coffee"
},
"homepage": "https://github.com/debitoor/address-validator",
"author": {
"name": "Misha Koryak",
"url": "http://www.programmingdrunk.com"
},
"repository": {
"type": "git",
"url": "git://github.com/debitoor/address-validator.git"
},
"dependencies": {
"coffee-script": "~1.9.2",
"underscore": "~1.12.1",
"request": "~2.88.2"
}
}