UNPKG

swedish-salary-day

Version:

Calculate the next or previous salary payout date according to configured rules.

71 lines (70 loc) 1.78 kB
{ "name": "swedish-salary-day", "infra": "polyrepo", "version": "0.0.2", "description": "Calculate the next or previous salary payout date according to configured rules.", "keywords": [ "salary", "payout", "payday", "date", "finance" ], "author": "Andreas Oldeskog", "license": "MIT", "scripts": { "build": "packemon build", "check": "yarn run type && yarn run test && yarn run lint", "clean": "packemon clean", "coverage": "yarn run test --coverage", "format": "prettier --write ./src ./tests", "lint": "eslint --cache --fix ./src ./tests", "pack": "NODE_ENV=production packemon pack --addEngines --declaration", "prelease": "yarn run pack && yarn run check", "release": "yarn publish", "test": "jest", "type": "tsc && tsc -p ./tests", "validate": "packemon validate", "watch": "packemon watch" }, "devDependencies": { "@types/jest": "^28.1.3", "@types/node": "^18.0.0", "eslint": "^8.18.0", "eslint-config-beemo": "^2.1.1", "jest": "^28.1.1", "jest-preset-beemo": "^2.2.0", "packemon": "^2.3.1", "prettier": "^2.7.1", "prettier-config-beemo": "^2.0.0", "tsconfig-beemo": "^1.1.0", "typescript": "^4.7.4" }, "repository": { "type": "git", "url": "https://github.com/aolde/swedish-salary-day" }, "packemon": { "platform": [ "browser", "node" ] }, "main": "./mjs/index.mjs", "module": "./esm/index.js", "files": [ "dts/**/*.d.ts", "esm/**/*.{js,map}", "lib/**/*.{js,map}", "mjs/**/*.{mjs,map}", "src/**/*.{ts,tsx,json}" ], "dependencies": { "se-bank-holidays": "^1.1.5" }, "types": "./dts/index.d.ts", "engines": { "node": ">=14.15.0", "npm": ">=6.14.0" } }