holidayapi-node/package.json
Josh Sherman bc67f9f132
test: drop end of life Node.js version
* test: Dropped Node v13.x since it's now past it's expiration.
* test: Migrated from Travis CI to GitHub Actions.
* test: Migrated from Coveralls to CodeCov.
* docs: Dropped over 1.x stuff from the read me.
* perf: Updated dependencies and rebuilt against latest TypeScript.
* feat: Bumped major version number due to Node.js support changing.
2020-06-08 18:25:22 -05:00

51 lines
1.3 KiB
JSON

{
"name": "holidayapi",
"version": "4.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": ">= 10.0.0"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/nock": "^11.1.0",
"@types/node": "^14.0.12",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jest": "^23.13.2",
"jest": "^26.0.1",
"nock": "^12.0.3",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"dependencies": {
"node-fetch": "^2.6.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint --ext .js,.ts src tests",
"test": "jest",
"test:coverage": "jest --coverage"
}
}