owm-onecall-api
Version:
A wrapper for OpenWeatherMap's 'onecall' API.
82 lines (81 loc) • 1.83 kB
JSON
{
"name": "owm-onecall-api",
"version": "1.3.0",
"description": "A wrapper for OpenWeatherMap's 'onecall' API.",
"keywords": [
"darksky",
"weather",
"darksky.net",
"openweathermap",
"onecall",
"openweathermap-onecall",
"onecall-api"
],
"author": "Jordon de Hoog <jordon.dehoog@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/worldturtlemedia/openweathermap-onecall"
},
"main": "dist/index.js",
"module": "dist/owm-onecall-api.esm.js",
"typings": "dist/types/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"predocs": "rimraf docs",
"docs": "typedoc --out docs --exclude '**/__mocks__/**' --excludePrivate --excludeInternal src/index.ts",
"build": "tsdx build --format esm,cjs",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"test:coverage": "tsdx test --coverage",
"lint": "tsdx lint src test",
"lint:fix": "tsdx lint --fix",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.0.0",
"date-fns": "^2.16.0"
},
"devDependencies": {
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"husky": "8.0.3",
"jest-mock-axios": "4.6.2",
"rimraf": "4.1.2",
"tsdx": "0.14.1",
"tslib": "2.5.0",
"typedoc": "0.23.25",
"typescript": "4.9.5",
"yargs": "^17.7.0"
},
"prettier": {
"printWidth": 80,
"semi": false,
"trailingComma": "es5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"master",
"next"
]
},
"jest": {
"coverageReporters": [
"lcov",
"html",
"text"
]
}
}