-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 916 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
{
"name": "tribune-bing-geocoder",
"version": "0.2.0",
"description": "JavaScript wrapper to Bing's geocoding API that supports alternate endpoint URLs",
"repository": {
"type": "git",
"url": "https://github.com/newsapps/tribune-bing-geocoder.git"
},
"main": "lib/geocoder.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d lib && browserify --standalone BingGeocoder --outfile tribune-bing-geocoder.js lib/geocoder.js"
},
"keywords": [
"bing",
"api",
"geocoding"
],
"author": "Geoff Hing <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.4.5",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"browserify": "^13.0.0"
},
"dependencies": {
"jsonp": "^0.2.0"
}
}