UNPKG

load-google-maps-api

Version:

A lightweight Promise-returning helper for loading the Google Maps JavaScript API

54 lines (53 loc) 1.18 kB
{ "name": "load-google-maps-api", "version": "2.0.2", "description": "A lightweight Promise-returning helper for loading the Google Maps JavaScript API", "author": "Lim Yuan Qing", "license": "MIT", "repository": { "type": "git", "url": "git://github.com/yuanqing/load-google-maps-api.git" }, "devDependencies": { "browserify": "^16.5.0", "gzip-size-cli": "^3.0.0", "husky": "^4.2.3", "lint-staged": "^10.0.8", "prettier-standard": "^16.2.1", "rimraf": "^3.0.2", "standard": "^14.3.1", "tape": "^4.13.2", "tape-run": "^6.0.1", "terser": "^4.6.6" }, "scripts": { "clean": "rimraf '*.log'", "fix": "prettier-standard '*.js'", "lint": "standard '*.js'", "test": "browserify test.js | tape-run", "weight": "terser index.js --compress --mangle --toplevel | gzip-size" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "standard", "prettier-standard" ] }, "files": [ "index.js" ], "keywords": [ "api", "google", "google-maps", "google-maps-api", "loader", "maps", "promise" ] }