mirror of
https://github.com/holidayapi/holidayapi-node.git
synced 2025-06-21 12:36:33 +00:00
* test: Added Node.js v14.x to the test suite. * perf: Updated dependencies. * docs: Drop blurb about migration from v2 as it will be covered in release notes. * chore: Bumped minor version since compatibility has increased.
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "holidayapi",
|
|
"version": "3.3.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.2.1",
|
|
"@types/nock": "^11.1.0",
|
|
"@types/node": "^13.13.4",
|
|
"@types/node-fetch": "^2.5.7",
|
|
"@typescript-eslint/eslint-plugin": "^2.30.0",
|
|
"@typescript-eslint/parser": "^2.30.0",
|
|
"coveralls": "^3.1.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-airbnb-base": "^14.1.0",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"eslint-plugin-jest": "^23.8.2",
|
|
"jest": "^25.4.0",
|
|
"nock": "^12.0.3",
|
|
"ts-jest": "^25.4.0",
|
|
"typescript": "^3.7.5"
|
|
},
|
|
"dependencies": {
|
|
"node-fetch": "^2.6.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "eslint --ext .js,.ts src tests",
|
|
"test": "jest",
|
|
"test:coverage": "jest --coverage --coverageReporters=text-lcov | coveralls"
|
|
}
|
|
}
|