weather-promise
Version:
A module for obtaining weather information
58 lines (57 loc) • 1.41 kB
JSON
{
"name": "weather-promise",
"version": "2.1.0",
"description": "A module for obtaining weather information",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"depcheck": "dependency-check --no-dev . *.js",
"depcheck:unused": "dependency-check ./package.json --unused --no-dev *.js",
"test:unit": "nyc --reporter=lcov --reporter=text mocha",
"test:coveralls": "nyc report --reporter=text-lcov | coveralls",
"test": "npm run lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "https://github.com/marshallasch/weather.git"
},
"keywords": [
"weather",
"forecast"
],
"author": [
{
"name": "Marshall Asch",
"email": "maasch@rogers.com",
"url": "https://marshallasch.ca/"
},
"MAPReiff",
"devfacet"
],
"license": "MIT",
"homepage": "http://github.com/marshallasch/weather",
"engines": {
"node": ">=12.22.0"
},
"dependencies": {
"axios": "0.26.1",
"xml2js": "0.4.x"
},
"devDependencies": {
"chai": "4.3.6",
"coveralls": "3.1.1",
"dependency-check": "4.1.0",
"eslint": "8.12.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.25.4",
"mocha": "9.2.2",
"nyc": "15.1.0"
},
"bugs": {
"url": "https://github.com/marshallasch/weather/issues"
},
"directories": {
"test": "test"
}
}