holidayapi-node/package.json
Josh Sherman 17a7914fdc
feat: pull country or language by code.
* feat: pull country or language by code.

This differs from the existing `search` functionality in that it allows
you to explicitly pull back a single country or language instead of
anything that matches (which could result in more items returned than
expected).

* refactor(types): add new types for the affected endpoints.
* docs(readme): update to include examples for new functionality.
* test: expand tests to include new parameters.
* feat(package): upgrade dependencies to the latest versions.
* fix(eslint): adjust configuration based on an updated dependency.
* docs(license): bump the year of the license.
2020-02-11 18:59:10 -06:00

51 lines
1.3 KiB
JSON

{
"name": "holidayapi",
"version": "3.1.0",
"description": "Official Node.js library for Holiday API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/holidayapi/holidayapi-node.git"
},
"keywords": [
"calendar",
"holiday",
"holidays",
"holidayapi"
],
"author": "Josh Sherman <hello@holidayapi.com> (https://holidayapi.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/holidayapi/holidayapi-node/issues"
},
"homepage": "https://holidayapi.com",
"engines": {
"node": ">= 8.0.0"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/nock": "^11.1.0",
"@types/node": "^13.7.1",
"@types/node-fetch": "^2.5.4",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"jest": "^25.1.0",
"nock": "^11.8.2",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
},
"dependencies": {
"node-fetch": "^2.6.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint --ext .js,.ts src/ tests/",
"test": "jest --coverage --coverageReporters=text-lcov | coveralls"
}
}