holidayapi-node/package.json
Josh Sherman 0d1e00a15e
chore: test against node 13 and bump versions
* chore: added the latest version of Node.js to the test plan
* docs: fixed a few code typos in the README
* chore: upgraded dependency versions
* chore: bumped version number
* chore: dropped testing for unmaintained Node.js version
* docs: added some notes about Node.js compatibility
2019-11-11 15:20:39 -06:00

49 lines
1.3 KiB
JSON

{
"name": "holidayapi",
"version": "3.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": ">= 8.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.22",
"@types/nock": "^11.1.0",
"@types/node": "^12.12.7",
"@types/node-fetch": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.3",
"jest": "^24.9.0",
"nock": "^11.7.0",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"dependencies": {
"node-fetch": "^2.6.0"
},
"scripts": {
"test": "jest --coverage --coverageReporters=text-lcov | coveralls"
}
}