mirror of
https://github.com/holidayapi/holidayapi-node.git
synced 2025-06-21 04:26:33 +00:00
Updated dependencies and resolved the recent security vulnerabilities. Also added linting to the CI pipeline and split out testing into two scripts to make it easier to run tests locally.
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "holidayapi",
|
|
"version": "3.2.1",
|
|
"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.4",
|
|
"@types/nock": "^11.1.0",
|
|
"@types/node": "^13.9.2",
|
|
"@types/node-fetch": "^2.5.4",
|
|
"@typescript-eslint/eslint-plugin": "^2.24.0",
|
|
"@typescript-eslint/parser": "^2.24.0",
|
|
"coveralls": "^3.0.11",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-airbnb-base": "^14.1.0",
|
|
"eslint-plugin-import": "^2.20.1",
|
|
"eslint-plugin-jest": "^23.8.2",
|
|
"jest": "^25.1.0",
|
|
"nock": "^12.0.3",
|
|
"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",
|
|
"test:coverage": "jest --coverage --coverageReporters=text-lcov | coveralls"
|
|
}
|
|
}
|