holidayapi-node/package.json
Josh Sherman bbda365fe7 feat: add workdays endpoint
Added support for our new workdays endpoint that allows you to pull the
number of working days that occur between two dates.

In addition to the new endpoint:
* chore: upgraded dependencies.
* ci: dropped Node.js 10 because it past EOL.
* ci: swapped Node.js 15 for 16 now that it's out.
* docs: added example of new endpoint.
2021-06-14 18:05:16 -05:00

51 lines
1.3 KiB
JSON

{
"name": "holidayapi",
"version": "5.0.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": ">= 12.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/nock": "^11.1.0",
"@types/node": "^15.12.2",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^27.0.4",
"nock": "^13.0.5",
"ts-jest": "^27.0.3",
"typescript": "^4.1.3"
},
"dependencies": {
"node-fetch": "^2.6.1"
},
"scripts": {
"build": "tsc",
"lint": "eslint --ext .js,.ts src tests",
"test": "jest",
"test:coverage": "jest --coverage"
}
}