nortax-ts
Version:
Norwegian Tax Calculator - TypeScript Implementation
57 lines • 1.38 kB
JSON
{
"name": "nortax-ts",
"version": "0.1.3",
"description": "Norwegian Tax Calculator - TypeScript Implementation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/langtind/nortax-ts.git"
},
"keywords": [
"norwegian",
"tax",
"calculator",
"typescript",
"norway",
"skatteetaten",
"tax-calculator"
],
"author": "Arild Langtind",
"license": "MIT",
"bugs": {
"url": "https://github.com/langtind/nortax-ts/issues"
},
"homepage": "https://github.com/langtind/nortax-ts#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "ENABLE_INTEGRATION_TESTS=true jest tax-integration.test.ts",
"test:all": "ENABLE_INTEGRATION_TESTS=true jest",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
}
}