dutch-tax-income-calculator
Version:
NPM package with functionality to calculate Dutch Tax Income
76 lines (75 loc) • 1.82 kB
JSON
{
"name": "dutch-tax-income-calculator",
"version": "26.2.0",
"description": "NPM package with functionality to calculate Dutch Tax Income",
"type": "module",
"main": "index.js",
"exports": {
".": {
"import": "./index.js",
"types": "./types/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"test:ci": "NODE_OPTIONS=--experimental-vm-modules npx jest --ci --collect-coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.js",
"data.json",
"types/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stevermeister/dutch-tax-income-calculator-npm.git"
},
"keywords": [
"tax",
"dutch",
"income",
"calculation",
"logic"
],
"author": "@stevermeister",
"license": "ISC",
"bugs": {
"url": "https://github.com/stevermeister/dutch-tax-income-calculator-npm/issues"
},
"homepage": "https://github.com/stevermeister/dutch-tax-income-calculator-npm#readme",
"devDependencies": {
"@eslint/js": "^9.39.1",
"csv-parser": "^3.2.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^29.7.0",
"prettier": "^3.6.2"
},
"types": "types/index.d.ts",
"jest": {
"transform": {},
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/"
],
"coverageReporters": [
"json",
"lcov",
"text",
"cobertura"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/helper.js"
]
}
}