-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
44 lines (44 loc) · 984 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
38
39
40
41
42
43
44
{
"name": "googlemaps",
"version": "1.12.0",
"main": "lib/index",
"description": "A simple way to query the Google Maps API from Node.js",
"license": "MIT",
"author": {
"name": "Colin Kennedy",
"email": "moshen.colin@gmail.com",
"url": "http://moshen.net"
},
"keywords": [
"map",
"geo",
"google",
"api",
"googlemaps",
"google maps",
"google-maps",
"node google maps"
],
"repository": {
"type": "git",
"url": "http://github.com/moshen/node-googlemaps"
},
"devDependencies": {
"mocha": "^2.4.5",
"should": "^8.2.2"
},
"engines": {
"node": ">=0.3.6"
},
"dependencies": {
"check-types": "~1.3.2",
"qs": "^4.0.0",
"request": "^2.79.0",
"waitress": ">=0.0.2"
},
"scripts": {
"all-tests": "./node_modules/.bin/mocha test/unit test/integration",
"test": "./node_modules/.bin/mocha test/unit",
"integration-test": "./node_modules/.bin/mocha test/integration"
}
}