UNPKG

openweather-api-node

Version:

Simple package that makes it easy to work with OpenWeather API

58 lines (57 loc) 1.64 kB
{ "name": "openweather-api-node", "version": "3.1.5", "description": "Simple package that makes it easy to work with OpenWeather API", "main": "dist/index.js", "types": "dist/index.d.ts", "module": "dist/index.mjs", "exports": { "types": "./dist/index.d.ts", "bun": "./dist/index.js", "import": "./dist/index.mjs", "require": "./dist/index.js" }, "scripts": { "test": "jest", "build": "rimraf ./dist && tsc && npm run build:esm", "build:esm": "gen-esm-wrapper ./dist/index.js ./dist/index.mjs", "docs": "typedoc --plugin typedoc-plugin-extras ./src/index.ts --out ./docs --media ./media --customCss ./media/style.css --favicon ./media/favicon.ico", "docs:deploy": "gh-pages -d ./docs" }, "keywords": [ "weather", "openweather", "openweathermap", "meteo", "weather-api", "air", "pollution", "api" ], "author": "loloToster", "license": "MIT", "devDependencies": { "@types/jest": "^29.2.4", "gen-esm-wrapper": "^1.1.3", "gh-pages": "^4.0.0", "jest": "^29.3.1", "rimraf": "^3.0.2", "ts-jest": "^29.0.3", "ts-node": "^10.9.1", "typedoc": "^0.24.4", "typedoc-plugin-extras": "^2.3.3", "typescript": "^4.9.4" }, "repository": { "type": "git", "url": "https://github.com/loloToster/openweather-api-node.git" }, "bugs": { "url": "https://github.com/loloToster/openweather-api-node/issues" }, "homepage": "https://lolotoster.github.io/openweather-api-node/", "directories": { "example": "examples", "test": "test" } }