weather-arg
Version:
A Package to consult the weather in Argentina
46 lines (45 loc) • 1.2 kB
JSON
{
"name": "weather-arg",
"version": "1.0.2",
"description": "A Package to consult the weather in Argentina",
"main": "lib/weather.js",
"files": [
"lib/"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "export TEST_ENV=true; mocha --exit --recursive tests/",
"coverage": "nyc npm test",
"test-ci": "nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive tests/",
"lint": "eslint lib/ tests/",
"weather-by-name": "node ./actions/by-name"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gastonpereyra/weather-arg.git"
},
"keywords": [
"weather",
"argentina"
],
"author": "Gastón Pereyra",
"license": "MIT",
"bugs": {
"url": "https://github.com/gastonpereyra/weather-arg/issues"
},
"homepage": "https://github.com/gastonpereyra/weather-arg#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.24.2",
"mocha": "^9.1.1",
"nock": "^13.1.3",
"nyc": "^15.1.0",
"sinon": "^11.1.2"
},
"dependencies": {
"node-fetch": "^2.6.2"
}
}