Comparing version 1.3.3 to 1.3.5
108
package.json
{ | ||
"name": "mini-owm", | ||
"version": "1.3.3", | ||
"description": "Mini ES wrapper for OpenWeatherMap api", | ||
"author": "Dean Verleger", | ||
"license": "ISC", | ||
"homepage": "https://github.com/deanbot/mini-owm#readme", | ||
"bugs": { | ||
"url": "https://github.com/deanbot/mini-owm/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/deanbot/mini-owm.git" | ||
}, | ||
"keywords": [ | ||
"Open Weather Map", | ||
"OpenWeather", | ||
"OpenWeatherMap", | ||
"API", | ||
"ES" | ||
], | ||
"main": "lib/index.js", | ||
"module": "libm/index.js", | ||
"types": "lib/index.d.ts", | ||
"sideEffects": false, | ||
"scripts": { | ||
"clean": "shx rm -rf lib libm", | ||
"prepare": "npm run clean", | ||
"prepublishOnly": "npm run build", | ||
"build": "npm run build:umd && npm run build:esnext && npm run build:ts-defs", | ||
"build:umd": "cross-env NODE_ENV=production webpack --config ./webpack.config.js", | ||
"build:esnext": "tsc -p tsconfig.esnext.json", | ||
"build:ts-defs": "tsc --declaration --emitDeclarationOnly", | ||
"build:dev": "webpack --config ./webpack.config.js", | ||
"build:dev-watch": "webpack --config ./webpack.config.js --progress --colors --watch", | ||
"serve": "http-server ./lib -o", | ||
"start": "npm run clean && npm run build:dev && npm-run-all --parallel build:dev-watch serve", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.9.6", | ||
"@babel/preset-env": "^7.9.6", | ||
"@babel/preset-typescript": "^7.9.0", | ||
"babel-loader": "^8.1.0", | ||
"cross-env": "^7.0.2", | ||
"dotenv": "^8.2.0", | ||
"fs-extra": "^7.0.1", | ||
"html-webpack-plugin": "^4.3.0", | ||
"http-server": "^0.12.3", | ||
"npm-run-all": "^4.1.5", | ||
"shx": "^0.3.2", | ||
"typescript": "^3.9.3", | ||
"webpack": "^4.43.0", | ||
"webpack-cli": "^3.3.11" | ||
} | ||
"name": "mini-owm", | ||
"version": "1.3.5", | ||
"description": "Mini ES wrapper for OpenWeatherMap api", | ||
"author": "Dean Verleger", | ||
"license": "ISC", | ||
"homepage": "https://github.com/deanbot/mini-owm#readme", | ||
"bugs": { | ||
"url": "https://github.com/deanbot/mini-owm/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/deanbot/mini-owm.git" | ||
}, | ||
"keywords": [ | ||
"Open Weather Map", | ||
"OpenWeather", | ||
"OpenWeatherMap", | ||
"API", | ||
"ES" | ||
], | ||
"main": "lib/index.js", | ||
"module": "libm/index.js", | ||
"types": "lib/index.d.ts", | ||
"sideEffects": false, | ||
"scripts": { | ||
"clean": "shx rm -rf lib libm", | ||
"prepare": "npm run clean", | ||
"prepublishOnly": "npm run build", | ||
"build": "npm run build:umd && npm run build:esnext && npm run build:ts-defs", | ||
"build:umd": "cross-env NODE_ENV=production webpack --config ./webpack.config.js", | ||
"build:esnext": "tsc -p tsconfig.esnext.json", | ||
"build:ts-defs": "tsc --declaration --emitDeclarationOnly", | ||
"build:dev": "webpack --config ./webpack.config.js", | ||
"build:dev-watch": "webpack --config ./webpack.config.js --progress --colors --watch", | ||
"serve": "http-server ./lib -o", | ||
"start": "npm run clean && npm run build:dev && npm-run-all --parallel build:dev-watch serve", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.9.6", | ||
"@babel/preset-env": "^7.9.6", | ||
"@babel/preset-typescript": "^7.9.0", | ||
"babel-loader": "^8.1.0", | ||
"cross-env": "^7.0.2", | ||
"dotenv": "^8.2.0", | ||
"fs-extra": "^7.0.1", | ||
"html-webpack-plugin": "^4.3.0", | ||
"http-server": "^0.12.3", | ||
"npm-run-all": "^4.1.5", | ||
"shx": "^0.3.2", | ||
"typescript": "^3.9.3", | ||
"webpack": "^4.43.0", | ||
"webpack-cli": "^3.3.11" | ||
} | ||
} |
@@ -5,3 +5,3 @@ # mini-owm | ||
Configure it via [initialization](#Constructor-parameters), [chaining](#Chaining), [individual calls](#Get-Parameters), or mix and match. | ||
Configure it via [initialization](#constructor-parameters), [chaining](#chaining), [individual calls](#get-parameters), or mix and match. | ||
@@ -13,3 +13,3 @@ mini-owm also simplifies the Open Weather Api by: | ||
- i.e. instead of `current.rain['1h']` the rain value is at `current.rain` | ||
- defaulting empty` rain` or `snow` to `0` instead of omitting (_0 is better than undefined_) | ||
- defaulting empty `rain` or `snow` to `0` instead of omitting (_0 is better than undefined_) | ||
@@ -16,0 +16,0 @@ ### Install |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
187662
25