UNPKG

google-places-web

Version:

A simple wrapper for the Google Places Web API

58 lines (57 loc) 1.4 kB
{ "name": "google-places-web", "version": "2.0.1", "description": "A simple wrapper for the Google Places Web API", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "run:example": "ts-node -r dotenv/config", "dev": "tsc --watch", "prepublish": "npm run build", "lint": "eslint src --ext .ts,.js", "lint:fix": "eslint src --ext .ts,.js --fix", "prepare": "npm run build", "test": "jest", "test:watch": "jest --verbose --watch", "build": "tsc" }, "husky": { "hooks": { "pre-commit": "npm run build" } }, "repository": { "type": "git", "url": "https://github.com/mcabs3/google-places-web" }, "keywords": [ "google", "places", "node" ], "author": "Miguel Caballero <mcabs3@gmail.com>", "license": "ISC", "devDependencies": { "@types/jest": "^27.0.1", "@types/node": "^16.7.10", "@types/superagent": "^4.1.12", "@typescript-eslint/eslint-plugin": "^4.30.0", "@typescript-eslint/parser": "^4.30.0", "dotenv": "^10.0.0", "eslint": "^7.32.0", "eslint-config-prettier": "^6.15.0", "eslint-plugin-prettier": "^3.3.1", "husky": "^7.0.2", "jest": "^27.1.0", "prettier": "^2.2.1", "ts-jest": "^27.0.5", "ts-node": "^10.2.1", "typescript": "^4.4.2" }, "files": [ "dist" ], "dependencies": { "superagent": "^6.1.0" } }