Upgrade to Node v16 for Github workflows.
[ustaxlib.git] / package.json
1 {
2 "name": "ustaxlib",
3 "version": "1.1.0",
4 "description": "A library for modeling individual US tax returns.",
5 "repository": "https://github.com/rsesek/ustaxlib",
6 "scripts": {
7 "npm-publish": "./build.sh && npm publish dist",
8 "dev": "jest --watch",
9 "test": "jest",
10 "debug": "node --inspect-brk --stack-trace-limit=1000 node_modules/.bin/jest --coverage=false"
11 },
12 "author": "Robert Sesek",
13 "license": "GPL-3.0-only",
14 "dependencies": {
15 "typescript": "^3.9.7"
16 },
17 "files": [
18 "dist/**/*",
19 "src/**/*",
20 "examples/**/*"
21 ],
22 "devDependencies": {
23 "@types/jest": "^25.2.3",
24 "jest": "^25.5.4",
25 "ts-jest": "^25.5.1"
26 }
27 }